2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2017-08-09 05:33:54 +01:00
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
2020-09-20 21:29:33 +01:00
|
|
|
, isPy27
|
2017-08-09 05:33:54 +01:00
|
|
|
# Python deps
|
|
|
|
, logutils
|
|
|
|
, Mako
|
2020-09-20 21:29:33 +01:00
|
|
|
, singledispatch
|
|
|
|
, six
|
|
|
|
, webtest
|
|
|
|
# Test Inputs
|
|
|
|
, pytestCheckHook
|
2017-08-09 05:33:54 +01:00
|
|
|
, genshi
|
|
|
|
, gunicorn
|
|
|
|
, jinja2
|
2020-09-20 21:29:33 +01:00
|
|
|
, Kajiki
|
2019-01-02 18:40:35 +00:00
|
|
|
, mock
|
2020-09-20 21:29:33 +01:00
|
|
|
, sqlalchemy
|
|
|
|
, virtualenv
|
2017-08-09 05:33:54 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pecan";
|
2020-09-20 21:29:33 +01:00
|
|
|
version = "1.4.0";
|
2017-08-09 05:33:54 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-09-20 21:29:33 +01:00
|
|
|
sha256 = "4b2acd6802a04b59e306d0a6ccf37701d24376f4dc044bbbafba3afdf9d3389a";
|
2017-08-09 05:33:54 +01:00
|
|
|
};
|
|
|
|
|
2020-09-20 21:29:33 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
logutils
|
|
|
|
Mako
|
|
|
|
singledispatch
|
|
|
|
six
|
|
|
|
webtest
|
2017-08-09 05:33:54 +01:00
|
|
|
];
|
|
|
|
|
2020-09-20 21:29:33 +01:00
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
genshi
|
|
|
|
gunicorn
|
|
|
|
jinja2
|
|
|
|
mock
|
|
|
|
sqlalchemy
|
|
|
|
virtualenv
|
2021-01-24 00:29:22 +00:00
|
|
|
] ++ lib.optionals isPy27 [ Kajiki ];
|
2020-09-20 21:29:33 +01:00
|
|
|
|
|
|
|
pytestFlagsArray = [
|
|
|
|
"--pyargs pecan "
|
|
|
|
];
|
2019-01-02 18:40:35 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-08-09 05:33:54 +01:00
|
|
|
description = "Pecan";
|
2020-09-20 21:29:33 +01:00
|
|
|
homepage = "http://www.pecanpy.org/";
|
|
|
|
changelog = "https://pecan.readthedocs.io/en/latest/changes.html";
|
2017-08-09 05:33:54 +01:00
|
|
|
};
|
|
|
|
}
|