nixpkgs/pkgs/development/python-modules/pyutilib/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
626 B
Nix
Raw Normal View History

2019-04-15 01:16:18 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
, six
}:
buildPythonPackage rec {
pname = "pyutilib";
version = "6.0.0";
2019-04-15 01:16:18 +00:00
src = fetchPypi {
pname = "PyUtilib";
inherit version;
sha256 = "sha256-08FPjtkCioMbK/Ubird3brqH5mz8WKBrmcNZqqZA8EA=";
2019-04-15 01:16:18 +00:00
};
propagatedBuildInputs = [
nose
six
];
# tests require text files that are not included in the pypi package
doCheck = false;
meta = with lib; {
description = "PyUtilib: A collection of Python utilities";
homepage = "https://github.com/PyUtilib/pyutilib";
2019-04-15 01:16:18 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}