about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cherrypy
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-27 15:54:47 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-27 16:48:55 +0100
commit3d4286e1a8c0bbf5e2fb3bdf4d31554d4237ec90 (patch)
tree5d772988f2f64ab5614b184c32e474e129a0b2ab /pkgs/development/python-modules/cherrypy
parent489d7351da074d4b26fe43095e439524c44ede79 (diff)
python3.pkgs.cherrypy: 18.1.0 -> 18.1.1
Diffstat (limited to 'pkgs/development/python-modules/cherrypy')
-rw-r--r--pkgs/development/python-modules/cherrypy/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/cherrypy/default.nix b/pkgs/development/python-modules/cherrypy/default.nix
index de70ae699273c..b39353f649d12 100644
--- a/pkgs/development/python-modules/cherrypy/default.nix
+++ b/pkgs/development/python-modules/cherrypy/default.nix
@@ -6,14 +6,14 @@
 
 buildPythonPackage rec {
   pname = "cherrypy";
-  version = "18.1.0";
+  version = "18.1.1";
 
   disabled = !isPy3k;
 
   src = fetchPypi {
     pname = "CherryPy";
     inherit version;
-    sha256 = "4dd2f59b5af93bd9ca85f1ed0bb8295cd0f5a8ee2b84d476374d4e070aa5c615";
+    sha256 = "6585c19b5e4faffa3613b5bf02c6a27dcc4c69a30d302aba819639a2af6fa48b";
   };
 
   propagatedBuildInputs = [
@@ -30,9 +30,7 @@ buildPythonPackage rec {
   ];
 
   checkPhase = ''
-    # test_2_File_Concurrency also fails upstream: https://github.com/cherrypy/cherrypy/issues/1306
-    # ...and skipping it makes 2 other tests fail
-    pytest -k "not test_2_File_Concurrency and not test_3_Redirect and not test_4_File_deletion"
+    pytest
   '';
 
   meta = with lib; {