summary refs log tree commit diff
path: root/pkgs/development/python-modules/xdis/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/xdis/default.nix')
-rw-r--r--pkgs/development/python-modules/xdis/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/xdis/default.nix b/pkgs/development/python-modules/xdis/default.nix
index 39eb962c040..df0ad509e29 100644
--- a/pkgs/development/python-modules/xdis/default.nix
+++ b/pkgs/development/python-modules/xdis/default.nix
@@ -8,18 +8,19 @@
 
 buildPythonPackage rec {
   pname = "xdis";
-  version = "3.8.8";
+  version = "3.8.9";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "4d212df8a85ab55a35f6ad71b2c29818d903c3e6a95e31eb26d5f3fc66a4e015";
+    sha256 = "1q2dg3hnsmmpjcc7lzjf5nd041mpbwa2bq3dgr4p6wv65vncny9v";
   };
 
   checkInputs = [ pytest ];
   propagatedBuildInputs = [ six click ];
 
-  # newest release moves to pytest (tests not packaged with release)
-  doCheck = false;
+  checkPhase = ''
+    make check
+  '';
 
   meta = with stdenv.lib; {
     description = "Python cross-version byte-code disassembler and marshal routines";