1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 nose,
6 six,
7}:
8
9buildPythonPackage rec {
10 pname = "pyutilib";
11 version = "6.0.0";
12 format = "setuptools";
13
14 src = fetchPypi {
15 pname = "PyUtilib";
16 inherit version;
17 hash = "sha256-08FPjtkCioMbK/Ubird3brqH5mz8WKBrmcNZqqZA8EA=";
18 };
19
20 propagatedBuildInputs = [
21 nose
22 six
23 ];
24
25 # tests require text files that are not included in the pypi package
26 doCheck = false;
27
28 meta = with lib; {
29 description = "PyUtilib: A collection of Python utilities";
30 homepage = "https://github.com/PyUtilib/pyutilib";
31 license = licenses.bsd3;
32 maintainers = [ ];
33 };
34}