2018-12-19 16:10:07 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
2019-03-27 14:07:06 +00:00
|
|
|
, setuptools_scm
|
|
|
|
, cheroot, portend, more-itertools, zc_lockfile, routes
|
|
|
|
, objgraph, pytest, pytestcov, pathpy, requests_toolbelt, pytest-services
|
2017-12-24 04:03:44 +00:00
|
|
|
}:
|
2017-09-05 09:16:41 +00:00
|
|
|
|
2019-03-27 14:07:06 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cherrypy";
|
|
|
|
version = "18.1.0";
|
|
|
|
|
|
|
|
disabled = !isPy3k;
|
2018-12-19 16:10:07 +00:00
|
|
|
|
2017-09-05 09:16:41 +00:00
|
|
|
src = fetchPypi {
|
2019-03-27 14:07:06 +00:00
|
|
|
pname = "CherryPy";
|
|
|
|
inherit version;
|
|
|
|
sha256 = "4dd2f59b5af93bd9ca85f1ed0bb8295cd0f5a8ee2b84d476374d4e070aa5c615";
|
2017-09-05 09:16:41 +00:00
|
|
|
};
|
|
|
|
|
2019-03-27 14:07:06 +00:00
|
|
|
propagatedBuildInputs = [
|
2019-02-13 16:51:28 +00:00
|
|
|
# required
|
|
|
|
cheroot portend more-itertools zc_lockfile
|
|
|
|
# optional
|
|
|
|
routes
|
|
|
|
];
|
2017-09-05 09:16:41 +00:00
|
|
|
|
2019-03-27 14:07:06 +00:00
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
2017-12-24 04:03:44 +00:00
|
|
|
|
2019-03-27 14:07:06 +00:00
|
|
|
checkInputs = [
|
2019-02-13 16:51:28 +00:00
|
|
|
objgraph pytest pytestcov pathpy requests_toolbelt pytest-services
|
|
|
|
];
|
2017-12-24 04:03:44 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
2019-02-25 10:28:14 +00:00
|
|
|
# test_2_File_Concurrency also fails upstream: https://github.com/cherrypy/cherrypy/issues/1306
|
|
|
|
# ...and skipping it makes 2 other tests fail
|
2019-03-27 14:07:06 +00:00
|
|
|
pytest -k "not test_2_File_Concurrency and not test_3_Redirect and not test_4_File_deletion"
|
2017-12-24 04:03:44 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2019-03-27 14:07:06 +00:00
|
|
|
homepage = https://www.cherrypy.org;
|
2017-09-05 09:16:41 +00:00
|
|
|
description = "A pythonic, object-oriented HTTP framework";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|