nixpkgs/pkgs/development/python-modules/pecan/default.nix

69 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
2017-08-09 04:33:54 +00:00
, fetchPypi
, fetchpatch
2017-08-09 04:33:54 +00:00
, buildPythonPackage
, isPy27
2017-08-09 04:33:54 +00:00
# Python deps
, logutils
, Mako
, singledispatch ? null
, six
, webtest
# Test Inputs
, pytestCheckHook
2017-08-09 04:33:54 +00:00
, genshi
, gunicorn
, jinja2
, Kajiki
2019-01-02 18:40:35 +00:00
, mock
, sqlalchemy
, virtualenv
2017-08-09 04:33:54 +00:00
}:
buildPythonPackage rec {
pname = "pecan";
version = "1.4.0";
2017-08-09 04:33:54 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "4b2acd6802a04b59e306d0a6ccf37701d24376f4dc044bbbafba3afdf9d3389a";
2017-08-09 04:33:54 +00:00
};
patches = [
(fetchpatch {
name = "Support-SQLAlchemy-1.4x.patch";
url = "https://github.com/pecan/pecan/commit/a520bd544c0b02a02dbf692b8d6e2f7a503ee6d4.patch";
sha256 = "sha256-QCHRjwnpy8ndCvcuyE5Y65BybKYthJXDySUtmpJD8gY=";
})
];
propagatedBuildInputs = [
logutils
Mako
singledispatch
six
webtest
2017-08-09 04:33:54 +00:00
];
checkInputs = [
pytestCheckHook
genshi
gunicorn
jinja2
mock
sqlalchemy
virtualenv
] ++ lib.optionals isPy27 [ Kajiki ];
pytestFlagsArray = [
"--pyargs pecan "
];
2019-01-02 18:40:35 +00:00
meta = with lib; {
description = "WSGI object-dispatching web framework, designed to be lean and fast";
homepage = "https://www.pecanpy.org/";
changelog = "https://pecan.readthedocs.io/en/latest/changes.html";
maintainers = with maintainers; [ applePrincess ];
2017-08-09 04:33:54 +00:00
};
}