nixpkgs/pkgs/development/python-modules/zconfig/default.nix

31 lines
714 B
Nix
Raw Normal View History

2017-07-14 05:06:29 +02:00
{ stdenv
, fetchPypi
, buildPythonPackage
, zope_testrunner
, manuel
, docutils
2017-07-14 05:06:29 +02:00
}:
buildPythonPackage rec {
pname = "ZConfig";
version = "3.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "de0a802e5dfea3c0b3497ccdbe33a5023c4265f950f33e35dd4cf078d2a81b19";
};
patches = [ ./skip-broken-test.patch ]
++ stdenv.lib.optional stdenv.hostPlatform.isMusl ./remove-setlocale-test.patch;
2017-07-14 05:06:29 +02:00
buildInputs = [ manuel docutils ];
2017-07-14 05:06:29 +02:00
propagatedBuildInputs = [ zope_testrunner ];
meta = with stdenv.lib; {
description = "Structured Configuration Library";
homepage = https://pypi.python.org/pypi/ZConfig;
license = licenses.zpl20;
2017-07-14 05:06:29 +02:00
maintainers = [ maintainers.goibhniu ];
};
}