1{ stdenv 2, fetchPypi 3, buildPythonPackage 4, zope_testrunner 5, manuel 6, docutils 7}: 8 9buildPythonPackage rec { 10 pname = "ZConfig"; 11 version = "3.2.0"; 12 name = "${pname}-${version}"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "de0a802e5dfea3c0b3497ccdbe33a5023c4265f950f33e35dd4cf078d2a81b19"; 17 }; 18 19 patches = [ ./skip-broken-test.patch ]; 20 21 buildInputs = [ manuel docutils ]; 22 propagatedBuildInputs = [ zope_testrunner ]; 23 24 meta = with stdenv.lib; { 25 description = "Structured Configuration Library"; 26 homepage = http://pypi.python.org/pypi/ZConfig; 27 license = licenses.zpl20; 28 maintainers = [ maintainers.goibhniu ]; 29 }; 30}