Skip to content

Commit

Permalink
python.pkgs.astor: fix python 3.6 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Jan 24, 2018
1 parent 4d0499a commit 3b6b52b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/development/python-modules/astor/default.nix
@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi }:
{ stdenv, buildPythonPackage, fetchPypi, pytest }:

buildPythonPackage rec {
pname = "astor";
Expand All @@ -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;
Expand Down

0 comments on commit 3b6b52b

Please sign in to comment.