My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/astor/default.nix

29 lines
783 B

{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
buildPythonPackage rec {
pname = "astor";
version = "0.8.1";
src = fetchPypi {
inherit pname version;
sha256 = "0ppscdzzvxpznclkmhhj53iz314x3pfv4yc7c6gwxqgljgdgyvka";
};
# disable tests broken with python3.6: https://github.com/berkerpeksag/astor/issues/89
checkInputs = [ pytestCheckHook ];
disabledTests = [
"check_expressions"
"check_astunparse"
"convert_stdlib"
"codegen_as_submodule"
"positional_only_arguments"
"codegen_from_root"
];
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 ];
};
}