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

26 lines
757 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "astor";
2017-12-30 12:21:32 +01:00
version = "0.6.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-12-30 12:21:32 +01:00
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;
license = licenses.bsd3;
maintainers = with maintainers; [ nixy ];
};
}