mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
db7e2b484b
Co-authored-by: Jon <jonringer@users.noreply.github.com>
47 lines
837 B
Nix
47 lines
837 B
Nix
{ lib
|
|
, isPy3k
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, flake8-import-order
|
|
, pyflakes
|
|
, mock
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zimports";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sqlalchemyorg";
|
|
repo = "zimports";
|
|
rev = version;
|
|
sha256 = "0a5axflkk0wv0rdnrh8l2rgj8gh2pfkg5lrvr8x4yxxiifawrafc";
|
|
};
|
|
|
|
disabled = !isPy3k;
|
|
|
|
propagatedBuildInputs = [
|
|
pyflakes
|
|
flake8-import-order
|
|
setuptools
|
|
];
|
|
|
|
checkInputs = [
|
|
mock
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preInstallCheck
|
|
PYTHONPATH= $out/bin/zimports --help >/dev/null
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Python import rewriter";
|
|
homepage = "https://github.com/sqlalchemyorg/zimports";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ timokau ];
|
|
};
|
|
}
|