about summary refs log tree commit diff
path: root/pkgs/development/python-modules/uncompyle6
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-05-14 20:49:57 +0200
committerGitHub <noreply@github.com>2019-05-14 20:49:57 +0200
commitd1bd8a983f04ce22b969b7f15b50a1281c0d4409 (patch)
treeb45995a9e2f4588612a3bf128fd997624e659fa1 /pkgs/development/python-modules/uncompyle6
parent6f88e9a59b15cb813a7ca5dc94024692df60b60e (diff)
pythonPackages.uncompyle6: 3.2.6 -> 3.3.2
Changes:
https://github.com/rocky/python-uncompyle6/blob/release-python-3.3.2/NEWS.md
Diffstat (limited to 'pkgs/development/python-modules/uncompyle6')
-rw-r--r--pkgs/development/python-modules/uncompyle6/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/uncompyle6/default.nix b/pkgs/development/python-modules/uncompyle6/default.nix
index 6996b9bcda3af..bb9c874d9a18a 100644
--- a/pkgs/development/python-modules/uncompyle6/default.nix
+++ b/pkgs/development/python-modules/uncompyle6/default.nix
@@ -11,11 +11,11 @@
 
 buildPythonPackage rec {
   pname = "uncompyle6";
-  version = "3.2.6";
+  version = "3.3.2";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "3a40f4f4b8b02a8687bd98c598980bed38a4770e3de253847eafed4b7167d07f";
+    sha256 = "096k1hipxxnsra5k86v6sm7bk1g0kb1f75yb44nvgf566kd6p119";
   };
 
   checkInputs = [ nose pytest hypothesis six ];
@@ -23,8 +23,9 @@ buildPythonPackage rec {
 
   # six import errors (yet it is supplied...)
   checkPhase = ''
-    pytest ./pytest --ignore=pytest/test_build_const_key_map.py \
-                    --ignore=pytest/test_grammar.py
+    runHook preCheck
+    pytest ./pytest --ignore=pytest/test_function_call.py
+    runHook postCheck
   '';
 
   meta = with stdenv.lib; {