aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/cherrypy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/cherrypy/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/cherrypy/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/cherrypy/default.nix b/nixpkgs/pkgs/development/python-modules/cherrypy/default.nix
index 17531f1406d..778f57e0f9b 100644
--- a/nixpkgs/pkgs/development/python-modules/cherrypy/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/cherrypy/default.nix
@@ -44,11 +44,15 @@ buildPythonPackage rec {
# Disable doctest plugin because times out
checkPhase = ''
substituteInPlace pytest.ini --replace "--doctest-modules" ""
- pytest --deselect=cherrypy/test/test_static.py::StaticTest::test_null_bytes ${stdenv.lib.optionalString stdenv.isDarwin "--deselect=cherrypy/test/test_bus.py::BusMethodTests::test_block"}
+ 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"}
'';
meta = with stdenv.lib; {
- homepage = https://www.cherrypy.org;
+ homepage = "https://www.cherrypy.org";
description = "A pythonic, object-oriented HTTP framework";
license = licenses.bsd3;
};