1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.pyutilib: init at 5.6.5

This commit is contained in:
Chris Ostrouchov 2019-04-14 21:16:18 -04:00
parent d492738459
commit bdda0c091d
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, six
}:
buildPythonPackage rec {
pname = "pyutilib";
version = "5.6.5";
src = fetchPypi {
pname = "PyUtilib";
inherit version;
sha256 = "4730084624be98f2c326da88f3852831c6aa919e11babab2c34b0299c8f5ce2a";
};
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 ];
};
}

View file

@ -4007,6 +4007,8 @@ in {
pyutil = callPackage ../development/python-modules/pyutil { };
pyutilib = callPackage ../development/python-modules/pyutilib { };
pywal = callPackage ../development/python-modules/pywal { };
pywebkitgtk = callPackage ../development/python-modules/pywebkitgtk { };