Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions pkgs/development/python-modules/pecan/default.nix
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
lib,
fetchPypi,
buildPythonPackage,
logutils,
mako,
webob,
webtest,
pythonOlder,
pytestCheckHook,
fetchPypi,
genshi,
gunicorn,
jinja2,
mako,
pytestCheckHook,
pythonOlder,
setuptools,
sqlalchemy,
virtualenv,
setuptools,
webob,
webtest,
}:

buildPythonPackage rec {
pname = "pecan";
version = "1.5.1";
format = "setuptools";
version = "1.6.0";
pyproject = true;

disabled = pythonOlder "3.6";
disabled = pythonOlder "3.8";

src = fetchPypi {
inherit pname version;
hash = "sha256-YGMnLV+GB3P7tLSyrhsJ2oyVQGLvhxFQwGz9sjkdk1U=";
hash = "sha256-X9RGlYPu0t7Te00QpHDhGl3j88lj3IeYTncuJcVv7T4=";
};

propagatedBuildInputs = [
logutils
build-system = [ setuptools ];

dependencies = [
mako
webob
setuptools
webob
];

nativeCheckInputs = [
pytestCheckHook
genshi
gunicorn
jinja2
pytestCheckHook
sqlalchemy
virtualenv
webtest
Expand All @@ -50,9 +50,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pecan" ];

meta = with lib; {
changelog = "https://pecan.readthedocs.io/en/latest/changes.html";
description = "WSGI object-dispatching web framework";
homepage = "https://www.pecanpy.org/";
changelog = "https://github.com/pecan/pecan/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ applePrincess ];
};
Expand Down