33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
112 lines
2.1 KiB
Nix
112 lines
2.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, cheroot
|
|
, fetchPypi
|
|
, jaraco_collections
|
|
, more-itertools
|
|
, objgraph
|
|
, path
|
|
, portend
|
|
, pytest-forked
|
|
, pytest-services
|
|
, pytestCheckHook
|
|
, python-memcached
|
|
, pythonAtLeast
|
|
, pythonOlder
|
|
, requests-toolbelt
|
|
, routes
|
|
, setuptools-scm
|
|
, simplejson
|
|
, zc_lockfile
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cherrypy";
|
|
version = "18.8.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "CherryPy";
|
|
inherit version;
|
|
hash = "sha256-m0jPuoovFtW2QZzGV+bVHbAFujXF44JORyi7A7vH75s=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Disable doctest plugin because times out
|
|
substituteInPlace pytest.ini \
|
|
--replace "--doctest-modules" "-vvv" \
|
|
--replace "-p pytest_cov" "" \
|
|
--replace "--no-cov-on-fail" ""
|
|
sed -i "/--cov/d" pytest.ini
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
cheroot
|
|
portend
|
|
more-itertools
|
|
zc_lockfile
|
|
jaraco_collections
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
objgraph
|
|
path
|
|
pytest-forked
|
|
pytest-services
|
|
pytestCheckHook
|
|
requests-toolbelt
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"-W"
|
|
"ignore::DeprecationWarning"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Keyboard interrupt ends test suite run
|
|
"KeyboardInterrupt"
|
|
# daemonize and autoreload tests have issue with sockets within sandbox
|
|
"daemonize"
|
|
"Autoreload"
|
|
|
|
"test_antistampede"
|
|
"test_file_stream"
|
|
"test_basic_request"
|
|
"test_3_Redirect"
|
|
"test_4_File_deletion"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"test_block"
|
|
];
|
|
|
|
disabledTestPaths = lib.optionals stdenv.isDarwin [
|
|
"cherrypy/test/test_config_server.py"
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
pythonImportsCheck = [
|
|
"cherrypy"
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
json = [ simplejson ];
|
|
memcached_session = [ python-memcached ];
|
|
routes_dispatcher = [ routes ];
|
|
# not packaged yet
|
|
xcgi = [ /* flup */ ];
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Object-oriented HTTP framework";
|
|
homepage = "https://cherrypy.dev/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|