Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pyutilib / default.nix
blob3877db3254b77fdeb5a5647c84d281da509c3593
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , six
6 }:
8 buildPythonPackage rec {
9   pname = "pyutilib";
10   version = "5.7.2";
12   src = fetchPypi {
13     pname = "PyUtilib";
14     inherit version;
15     sha256 = "0bdb5hlj6kyb9m3xnpxzasfv5psnxfj21qx6md8ym8zkcqyq1qs5";
16   };
18   propagatedBuildInputs = [
19     nose
20     six
21   ];
23   # tests require text files that are not included in the pypi package
24   doCheck = false;
26   meta = with lib; {
27     description = "PyUtilib: A collection of Python utilities";
28     homepage = "https://github.com/PyUtilib/pyutilib";
29     license = licenses.bsd3;
30     maintainers = [ maintainers.costrouc ];
31   };