summary refs log tree commit diff
path: root/pkgs/development/python-modules/astor
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-24 21:30:25 -0700
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-27 16:26:55 +0100
commitb3b4c5b12d928869eb18e7ee6161aa9a4977649b (patch)
tree867cb07f56d7f6d768ab49adfffabb1d4371ba1a /pkgs/development/python-modules/astor
parentd021a26ac8dc8783077e1e8d8d09c4089b2904a0 (diff)
downloadnixpkgs-b3b4c5b12d928869eb18e7ee6161aa9a4977649b.tar
nixpkgs-b3b4c5b12d928869eb18e7ee6161aa9a4977649b.tar.gz
nixpkgs-b3b4c5b12d928869eb18e7ee6161aa9a4977649b.tar.bz2
nixpkgs-b3b4c5b12d928869eb18e7ee6161aa9a4977649b.tar.lz
nixpkgs-b3b4c5b12d928869eb18e7ee6161aa9a4977649b.tar.xz
nixpkgs-b3b4c5b12d928869eb18e7ee6161aa9a4977649b.tar.zst
nixpkgs-b3b4c5b12d928869eb18e7ee6161aa9a4977649b.zip
python38Packages.astor: disable bad test
Diffstat (limited to 'pkgs/development/python-modules/astor')
-rw-r--r--pkgs/development/python-modules/astor/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/astor/default.nix b/pkgs/development/python-modules/astor/default.nix
index 6343b9eb8e4..21eeead88ca 100644
--- a/pkgs/development/python-modules/astor/default.nix
+++ b/pkgs/development/python-modules/astor/default.nix
@@ -12,15 +12,20 @@ buildPythonPackage rec {
   # fix packaging for setuptools>=41.4
   patches = [
     ( fetchpatch {
-        url = "https://github.com/berkerpeksag/astor/pull/163/commits/c908d1136cdfb058f5e9d81b4d3687931aa1ebfb.patch";
-        sha256 = "06mrx3qxfjyx9v76kxsj2b7zyqwrwlyd5z1fh77jbb8yl6m0nacd";
+        url = "https://github.com/berkerpeksag/astor/pull/163/commits/bd697678674aafcf3f7b1c06af67df181ed584e2.patch";
+        sha256 = "1m4szdyzalngd5klanmpjx5smgpc7rl5klky0lc0yhwbx210mla6";
     })
   ];
 
   # disable tests broken with python3.6: https://github.com/berkerpeksag/astor/issues/89
   checkInputs = [ pytest ];
   checkPhase = ''
-    py.test -k 'not check_expressions and not check_astunparse and not test_convert_stdlib and not test_codegen_as_submodule and not test_codegen_from_root'
+    py.test -k 'not check_expressions \
+                and not check_astunparse \
+                and not test_convert_stdlib \
+                and not test_codegen_as_submodule \
+                and not test_positional_only_arguments \
+                and not test_codegen_from_root'
   '';
 
   meta = with stdenv.lib; {