about summary refs log tree commit diff
path: root/pkgs/development/python-modules/diskcache
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-03-05 18:54:56 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2021-03-06 08:48:21 +0100
commit9ea8a0fd1c6164dae07275ec56c103da3625865e (patch)
tree69891dabd35b649de73f6ce22491751cf2d77846 /pkgs/development/python-modules/diskcache
parent860fd89a372fd3ce4d3d0029012a7c060c8ecc34 (diff)
python3Packages.diskcache: 5.1.0 -> 5.2.1
Diffstat (limited to 'pkgs/development/python-modules/diskcache')
-rw-r--r--pkgs/development/python-modules/diskcache/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/diskcache/default.nix b/pkgs/development/python-modules/diskcache/default.nix
index 8b968c3272fb5..ed6007f87ed2c 100644
--- a/pkgs/development/python-modules/diskcache/default.nix
+++ b/pkgs/development/python-modules/diskcache/default.nix
@@ -7,18 +7,17 @@
 , pytest_xdist
 , pytest-django
 , mock
-, django
 }:
 
 buildPythonPackage rec {
   pname = "diskcache";
-  version = "5.1.0";
+  version = "5.2.1";
 
   src = fetchFromGitHub {
     owner = "grantjenks";
     repo = "python-diskcache";
     rev = "v${version}";
-    sha256 = "0xwqw60dbn1x2294galcs08vm6ydcr677lr8slqz8a3ry6sgkhn9";
+    sha256 = "sha256-dWtEyyWpg0rxEwyhBdPyApzgS9o60HVGbtY76ELHvX8=";
   };
 
   checkInputs = [
@@ -31,6 +30,7 @@ buildPythonPackage rec {
 
   # Darwin sandbox causes most tests to fail.
   doCheck = !stdenv.isDarwin;
+  pythonImportsCheck = [ "diskcache" ];
 
   meta = with lib; {
     description = "Disk and file backed persistent cache";