about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-01-24 06:20:59 +0000
committerJörg Thalheim <joerg@thalheim.io>2018-01-24 06:21:40 +0000
commit3b6b52b19f57c9b5fdfa9368698ee2be6a59a021 (patch)
tree658c17539bdfa45b144afd30c1b4aedec81a52cb /pkgs/development/python-modules
parent4d0499ac56c98cdd0a3b79692490289dc7a13eaa (diff)
downloadnixlib-3b6b52b19f57c9b5fdfa9368698ee2be6a59a021.tar
nixlib-3b6b52b19f57c9b5fdfa9368698ee2be6a59a021.tar.gz
nixlib-3b6b52b19f57c9b5fdfa9368698ee2be6a59a021.tar.bz2
nixlib-3b6b52b19f57c9b5fdfa9368698ee2be6a59a021.tar.lz
nixlib-3b6b52b19f57c9b5fdfa9368698ee2be6a59a021.tar.xz
nixlib-3b6b52b19f57c9b5fdfa9368698ee2be6a59a021.tar.zst
nixlib-3b6b52b19f57c9b5fdfa9368698ee2be6a59a021.zip
python.pkgs.astor: fix python 3.6 tests
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/astor/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/astor/default.nix b/pkgs/development/python-modules/astor/default.nix
index 6f50b7157e5d..6a0bc0bb2acd 100644
--- a/pkgs/development/python-modules/astor/default.nix
+++ b/pkgs/development/python-modules/astor/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi }:
+{ stdenv, buildPythonPackage, fetchPypi, pytest }:
 
 buildPythonPackage rec {
   pname = "astor";
@@ -10,6 +10,12 @@ buildPythonPackage rec {
     sha256 = "ff6d2e2962d834acb125cc4dcc80c54a8c17c253f4cc9d9c43b5102a560bb75d";
   };
 
+  # 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'
+  '';
+
   meta = with stdenv.lib; {
     description = "Library for reading, writing and rewriting python AST";
     homepage = https://github.com/berkerpeksag/astor;