1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 09:02:46 +00:00
nixpkgs/pkgs/development/python-modules/pyutilib/default.nix

33 lines
625 B
Nix
Raw Normal View History

2019-04-15 02:16:18 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
, six
}:
buildPythonPackage rec {
pname = "pyutilib";
version = "5.7.1";
2019-04-15 02:16:18 +01:00
src = fetchPypi {
pname = "PyUtilib";
inherit version;
sha256 = "1m5ijc5qmv8hg4yj496ix77hbcf7ylk4sa98ym53sfsyz0mg3kxr";
2019-04-15 02:16:18 +01: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;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}