depot/third_party/nixpkgs/pkgs/development/python-modules/zope_configuration/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

33 lines
742 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, zope_i18nmessageid
, zope_schema
, zope_testrunner
, manuel
}:
buildPythonPackage rec {
pname = "zope.configuration";
version = "4.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-giPqSvU5hmznqccwrH6xjlHRfrUVk6p3c7NZPI1tdgg=";
};
checkInputs = [ zope_testrunner manuel ];
propagatedBuildInputs = [ zope_i18nmessageid zope_schema ];
# Need to investigate how to run the tests with zope-testrunner
doCheck = false;
meta = with lib; {
description = "Zope Configuration Markup Language (ZCML)";
homepage = "https://github.com/zopefoundation/zope.configuration";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}