2017-12-24 04:03:44 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2018-08-25 06:43:57 +01:00
|
|
|
, cheroot, contextlib2, portend, routes, six
|
|
|
|
, setuptools_scm, zc_lockfile
|
2018-04-20 12:11:35 +01:00
|
|
|
, backports_unittest-mock, objgraph, pathpy, pytest, pytestcov
|
2018-06-28 10:14:33 +01:00
|
|
|
, backports_functools_lru_cache, requests_toolbelt
|
2017-12-24 04:03:44 +00:00
|
|
|
}:
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "CherryPy";
|
2018-08-25 06:43:57 +01:00
|
|
|
version = "17.3.0";
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-25 06:43:57 +01:00
|
|
|
sha256 = "c3e4d76232ade4c47666b9008f92556465df517b8dca833ece3bed027028ae7d";
|
2017-09-05 10:16:41 +01:00
|
|
|
};
|
|
|
|
|
2018-08-25 06:43:57 +01:00
|
|
|
propagatedBuildInputs = [ cheroot contextlib2 portend routes six zc_lockfile ];
|
2017-09-05 10:16:41 +01:00
|
|
|
|
2017-12-24 04:03:44 +00:00
|
|
|
buildInputs = [ setuptools_scm ];
|
|
|
|
|
2018-06-28 10:14:33 +01:00
|
|
|
checkInputs = [ backports_unittest-mock objgraph pathpy pytest pytestcov backports_functools_lru_cache requests_toolbelt ];
|
2017-12-24 04:03:44 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
LANG=en_US.UTF-8 pytest
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2017-09-05 10:16:41 +01:00
|
|
|
homepage = "http://www.cherrypy.org";
|
|
|
|
description = "A pythonic, object-oriented HTTP framework";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|