My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/zimports/default.nix

39 lines
675 B

{ lib
, isPy3k
, fetchFromGitHub
, buildPythonPackage
, flake8-import-order
, pyflakes
, mock
}:
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
];
checkInputs = [
mock
];
meta = with lib; {
description = "Python import rewriter";
homepage = "https://github.com/sqlalchemyorg/zimports";
license = licenses.mit;
maintainers = with maintainers; [ timokau ];
};
}