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

30 lines
668 B
Nix
Raw Normal View History

2017-07-14 04:06:29 +01:00
{ stdenv
, fetchPypi
, buildPythonPackage
, zope_testrunner
, manuel
, docutils
2017-07-14 04:06:29 +01:00
}:
buildPythonPackage rec {
pname = "ZConfig";
version = "3.5.0";
2017-07-14 04:06:29 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0s7aycxna07a04b4rswbkj4y5qh3gxy2mcsqb9dmy0iimj9f9550";
2017-07-14 04:06:29 +01:00
};
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl ./remove-setlocale-test.patch;
2017-07-14 04:06:29 +01:00
buildInputs = [ manuel docutils ];
2017-07-14 04:06:29 +01: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 04:06:29 +01:00
maintainers = [ maintainers.goibhniu ];
};
}