mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
36 lines
829 B
Nix
36 lines
829 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 = with lib; {
|
|
description = "Library for reading, writing and rewriting python AST";
|
|
homepage = "https://github.com/berkerpeksag/astor";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ nixy ];
|
|
};
|
|
}
|