567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
35 lines
827 B
Nix
35 lines
827 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "astor";
|
|
version = "0.8.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0ppscdzzvxpznclkmhhj53iz314x3pfv4yc7c6gwxqgljgdgyvka";
|
|
};
|
|
|
|
# disable tests broken with python3.6: https://github.com/berkerpeksag/astor/issues/89
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
# https://github.com/berkerpeksag/astor/issues/196
|
|
"test_convert_stdlib"
|
|
# https://github.com/berkerpeksag/astor/issues/212
|
|
"test_huge_int"
|
|
];
|
|
|
|
meta = {
|
|
description = "Library for reading, writing and rewriting python AST";
|
|
homepage = "https://github.com/berkerpeksag/astor";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ nixy ];
|
|
};
|
|
}
|