My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zconfig/default.nix

32 lines
700 B

{ lib
, stdenv
, fetchPypi
, buildPythonPackage
, zope_testrunner
, manuel
, docutils
, pygments
}:
buildPythonPackage rec {
pname = "ZConfig";
version = "3.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-oo6VoK4zV5V0fsytNbLLcI831Ex/Ml4qyyAemDMLFuU=";
};
patches = lib.optional stdenv.hostPlatform.isMusl ./remove-setlocale-test.patch;
buildInputs = [ manuel docutils ];
propagatedBuildInputs = [ zope_testrunner ];
checkInputs = [ pygments ];
meta = with lib; {
description = "Structured Configuration Library";
homepage = "https://pypi.python.org/pypi/ZConfig";
license = licenses.zpl20;
maintainers = [ maintainers.goibhniu ];
};
}