depot/third_party/nixpkgs/pkgs/development/python-modules/zimports/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 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 ];
};
}