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 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "de0a802e5dfea3c0b3497ccdbe33a5023c4265f950f33e35dd4cf078d2a81b19"; 16 }; 17 18 patches = [ ./skip-broken-test.patch ] 19 ++ stdenv.lib.optional stdenv.hostPlatform.isMusl ./remove-setlocale-test.patch; 20 21 buildInputs = [ manuel docutils ]; 22 propagatedBuildInputs = [ zope_testrunner ]; 23 24 meta = with stdenv.lib; { 25 description = "Structured Configuration Library"; 26 homepage = https://pypi.python.org/pypi/ZConfig; 27 license = licenses.zpl20; 28 maintainers = [ maintainers.goibhniu ]; 29 }; 30}