9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
49 lines
1,002 B
Nix
49 lines
1,002 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, flake8-import-order
|
|
, pyflakes
|
|
, tomli
|
|
, setuptools
|
|
, pytestCheckHook
|
|
, pythonAtLeast
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zimports";
|
|
version = "0.6.0";
|
|
format = "setuptools";
|
|
|
|
# upstream technically support 3.7 through 3.9, but 3.10 happens to work while 3.11 breaks with an import error
|
|
disabled = pythonOlder "3.7" || pythonAtLeast "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sqlalchemyorg";
|
|
repo = "zimports";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-qm5mA8pCSLbkupGBo+ppHSW6uy1j/FfV3idvGQGhjqU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
flake8-import-order
|
|
pyflakes
|
|
setuptools
|
|
tomli
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"zimports"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python import rewriter";
|
|
homepage = "https://github.com/sqlalchemyorg/zimports";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ timokau ];
|
|
};
|
|
}
|