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

31 lines
662 B
Nix
Raw Normal View History

2017-07-14 03:06:29 +00:00
{ stdenv
, fetchPypi
, buildPythonPackage
, zope_testrunner
, manuel
, docutils
2017-07-14 03:06:29 +00:00
}:
buildPythonPackage rec {
pname = "ZConfig";
version = "3.2.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "de0a802e5dfea3c0b3497ccdbe33a5023c4265f950f33e35dd4cf078d2a81b19";
};
patches = [ ./skip-broken-test.patch ];
buildInputs = [ manuel docutils ];
2017-07-14 03:06:29 +00: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 03:06:29 +00:00
maintainers = [ maintainers.goibhniu ];
};
}