about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-11-05 13:40:23 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-03 16:50:38 +0100
commitb2d56e7defbad4d000ec6e3702f2885c844628eb (patch)
tree8999af1a5dd69495406c4d80745d22e5d1d48105
parentad2a03e74eb242a6290cfe1a5996880245467a96 (diff)
python.pkgs.cached-property: 1.4.2 -> 1.5.1
-rw-r--r--pkgs/development/python-modules/cached-property/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/cached-property/default.nix b/pkgs/development/python-modules/cached-property/default.nix
index 924ce07c8e78d..3a3e6d1e6dd96 100644
--- a/pkgs/development/python-modules/cached-property/default.nix
+++ b/pkgs/development/python-modules/cached-property/default.nix
@@ -7,20 +7,21 @@
 
 buildPythonPackage rec {
   pname = "cached-property";
-  version = "1.4.2";
+  version = "1.5.1";
 
   # conftest.py is missing in PyPI tarball
   src = fetchFromGitHub {
     owner = "pydanny";
     repo = pname;
     rev = version;
-    sha256 = "0gjmgfilhljkx2b60cjikwh55jg2jwxhwi8hgkrzdnzk465ywhrw";
+    sha256 = "0xh0pwmiikx0il9nnfyf034ydmlw6992s0d209agd9j5d3s2k5q6";
   };
 
   checkInputs = [ pytest freezegun ];
 
+  # https://github.com/pydanny/cached-property/issues/131
   checkPhase = ''
-    py.test
+    py.test -k "not test_threads_ttl_expiry"
   '';
 
   meta = {