1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "pyutilib";
10 version = "6.0.0";
11
12 src = fetchPypi {
13 pname = "PyUtilib";
14 inherit version;
15 sha256 = "sha256-08FPjtkCioMbK/Ubird3brqH5mz8WKBrmcNZqqZA8EA=";
16 };
17
18 propagatedBuildInputs = [
19 nose
20 six
21 ];
22
23 # tests require text files that are not included in the pypi package
24 doCheck = false;
25
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 };
32}