1{ stdenv, buildPythonPackage, fetchPypi, pytest }:
2
3buildPythonPackage rec {
4 pname = "astor";
5 version = "0.7.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "95c30d87a6c2cf89aa628b87398466840f0ad8652f88eb173125a6df8533fb8d";
10 };
11
12 # disable tests broken with python3.6: https://github.com/berkerpeksag/astor/issues/89
13 checkInputs = [ pytest ];
14 checkPhase = ''
15 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'
16 '';
17
18 meta = with stdenv.lib; {
19 description = "Library for reading, writing and rewriting python AST";
20 homepage = https://github.com/berkerpeksag/astor;
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ nixy ];
23 };
24}