5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
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.1";
|
|
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-+sDvl8z0O0cZyS1oZgt924hlOkYeHiStpXL9y9+JZ5I=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|