nixpkgs/pkgs/development/python-modules/astor/default.nix

30 lines
919 B
Nix
Raw Normal View History

2019-12-10 08:22:20 +00:00
{ lib, buildPythonPackage, fetchPypi, isPy27, pytest, fetchpatch }:
buildPythonPackage rec {
pname = "astor";
2019-12-10 08:22:20 +00:00
version = "0.8.1";
src = fetchPypi {
inherit pname version;
2019-12-10 08:22:20 +00:00
sha256 = "0ppscdzzvxpznclkmhhj53iz314x3pfv4yc7c6gwxqgljgdgyvka";
};
# 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 \
and not test_codegen_as_submodule \
and not test_positional_only_arguments \
and not test_codegen_from_root'
'';
2019-12-10 08:22:20 +00:00
meta = with lib; {
description = "Library for reading, writing and rewriting python AST";
homepage = "https://github.com/berkerpeksag/astor";
license = licenses.bsd3;
maintainers = with maintainers; [ nixy ];
};
}