2019-07-21 10:27:00 +01:00
|
|
|
{ stdenv, 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
|
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";
|
2019-10-29 23:26:32 +00:00
|
|
|
version = "18.3.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;
|
2019-10-29 23:26:32 +00:00
|
|
|
sha256 = "0q6cs4vrv0rwim4byxfizrlp4h6hmwg3n4baz0ga66vvgiz6hgk8";
|
2017-09-05 10:16:41 +01:00
|
|
|
};
|
|
|
|
|
2019-10-29 23:26:32 +00:00
|
|
|
# Remove patches once 88d2163 and 713f672
|
2019-09-03 11:45:39 +01:00
|
|
|
# become part of a release - they're currently only present in master.
|
2019-10-29 23:26:32 +00:00
|
|
|
# ref: https://github.com/cherrypy/cherrypy/pull/1820
|
2019-09-03 11:45:39 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2019-10-29 23:26:32 +00:00
|
|
|
name = "test_HTTP11_Timeout.patch";
|
|
|
|
url = "https://github.com/cherrypy/cherrypy/commit/88d21630f68090c56d07000cabb6df4f1b612a71.patch";
|
|
|
|
sha256 = "1i6a3qs3ijyd9rgsxb8axigkzdlmr5sl3ljif9rvn0d90211bzwh";
|
2019-09-03 11:45:39 +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
|
|
|
|
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 \
|
|
|
|
--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
|
|
|
'';
|
|
|
|
|
2019-07-21 10:27:00 +01:00
|
|
|
meta = with stdenv.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;
|
|
|
|
};
|
|
|
|
}
|