2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k
|
2019-03-27 14:07:06 +00:00
|
|
|
, setuptools_scm
|
|
|
|
, cheroot, portend, more-itertools, zc_lockfile, routes
|
2020-08-09 02:33:09 +01:00
|
|
|
, jaraco_collections
|
2019-03-27 14:07:06 +00:00
|
|
|
, objgraph, pytest, pytestcov, pathpy, requests_toolbelt, pytest-services
|
2019-09-03 11:45:39 +01:00
|
|
|
, fetchpatch
|
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";
|
2020-08-09 02:33:09 +01:00
|
|
|
version = "18.6.0";
|
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;
|
2020-08-09 02:33:09 +01:00
|
|
|
sha256 = "16f410izp2c4qhn4n3l5l3qirmkf43h2amjqms8hkl0shgfqwq2n";
|
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
|
2020-08-09 02:33:09 +01:00
|
|
|
jaraco_collections
|
2019-02-13 16:51:28 +00:00
|
|
|
# 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
|
|
|
|
2020-08-18 09:12:16 +01:00
|
|
|
# Keyboard interrupt ends test suite run
|
|
|
|
# daemonize and autoreload tests have issue with sockets within sandbox
|
2019-07-21 10:27:00 +01:00
|
|
|
# Disable doctest plugin because times out
|
2017-12-24 04:03:44 +00:00
|
|
|
checkPhase = ''
|
2019-07-21 10:27:00 +01:00
|
|
|
substituteInPlace pytest.ini --replace "--doctest-modules" ""
|
2020-04-13 11:32:01 +01:00
|
|
|
pytest \
|
2020-08-18 09:12:16 +01:00
|
|
|
-k 'not KeyboardInterrupt and not daemonize and not Autoreload' \
|
2020-04-13 11:32:01 +01:00
|
|
|
--deselect=cherrypy/test/test_static.py::StaticTest::test_null_bytes \
|
|
|
|
--deselect=cherrypy/test/test_tools.py::ToolTests::testCombinedTools \
|
|
|
|
${stdenv.lib.optionalString stdenv.isDarwin
|
|
|
|
"--deselect=cherrypy/test/test_bus.py::BusMethodTests::test_block"}
|
2017-12-24 04:03:44 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-03 08:22:35 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.cherrypy.org";
|
2017-09-05 10:16:41 +01:00
|
|
|
description = "A pythonic, object-oriented HTTP framework";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|