2019-10-18 01:02:23 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy27, pytest, fetchpatch }:
|
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
|
|
|
};
|
|
|
|
|
2019-10-18 01:02:23 +01:00
|
|
|
# fix packaging for setuptools>=41.4
|
|
|
|
patches = [
|
|
|
|
( fetchpatch {
|
2019-10-25 05:30:25 +01:00
|
|
|
url = "https://github.com/berkerpeksag/astor/pull/163/commits/bd697678674aafcf3f7b1c06af67df181ed584e2.patch";
|
|
|
|
sha256 = "1m4szdyzalngd5klanmpjx5smgpc7rl5klky0lc0yhwbx210mla6";
|
2019-10-18 01:02:23 +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 = ''
|
2019-10-25 05:30:25 +01: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_positional_only_arguments \
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|