2018-01-24 06:20:59 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pytest }:
|
2017-07-28 08:26:20 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "astor";
|
2019-07-04 11:08:43 +01:00
|
|
|
version = "0.8.0";
|
2017-07-28 08:26:20 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-04 11:08:43 +01:00
|
|
|
sha256 = "0qkq5bf13fqcwablg0nk7rx83izxdizysd42n26j5wbingcfx9ip";
|
2017-07-28 08:26:20 +01:00
|
|
|
};
|
|
|
|
|
2018-01-24 06:20:59 +00:00
|
|
|
# disable tests broken with python3.6: https://github.com/berkerpeksag/astor/issues/89
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
2018-01-24 06:24:16 +00:00
|
|
|
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'
|
2018-01-24 06:20:59 +00:00
|
|
|
'';
|
|
|
|
|
2017-07-28 08:26:20 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library for reading, writing and rewriting python AST";
|
|
|
|
homepage = https://github.com/berkerpeksag/astor;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ nixy ];
|
|
|
|
};
|
|
|
|
}
|