depot/third_party/nixpkgs/pkgs/development/python-modules/zconfig/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

54 lines
1 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
docutils,
fetchPypi,
manuel,
pygments,
pytestCheckHook,
pythonOlder,
setuptools,
zope-testrunner,
}:
buildPythonPackage rec {
pname = "zconfig";
version = "4.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-tqed2hV/NpjIdo0s7cJjIW6K8kDTz50JoCpkKREU6yA=";
};
patches = lib.optional stdenv.hostPlatform.isMusl ./remove-setlocale-test.patch;
nativeBuildInputs = [ setuptools ];
buildInputs = [
docutils
manuel
];
propagatedBuildInputs = [ zope-testrunner ];
nativeCheckInputs = [
pygments
pytestCheckHook
];
pythonImportsCheck = [ "ZConfig" ];
pytestFlagsArray = [ "-s" ];
meta = with lib; {
description = "Structured Configuration Library";
homepage = "https://github.com/zopefoundation/ZConfig";
changelog = "https://github.com/zopefoundation/ZConfig/blob/${version}/CHANGES.rst";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}