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 10:16:41 +01:00
|
|
|
|
2019-03-27 14:07:06 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cherrypy";
|
2019-07-02 10:39:59 +01:00
|
|
|
version = "18.1.2";
|
2019-03-27 14:07:06 +00:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
2018-12-19 16:10:07 +00:00
|
|
|
|
2017-09-05 10:16:41 +01:00
|
|
|
src = fetchPypi {
|
2019-03-27 14:07:06 +00:00
|
|
|
pname = "CherryPy";
|
|
|
|
inherit version;
|
2019-07-02 10:39:59 +01:00
|
|
|
sha256 = "1w3hpsg7q8shdmscmbqk00w90lcw3brary7wl1a56k5h7nx33pj8";
|
2017-09-05 10:16:41 +01: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 10:16:41 +01: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-03-27 14:54:47 +00:00
|
|
|
pytest
|
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 10:16:41 +01:00
|
|
|
description = "A pythonic, object-oriented HTTP framework";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|