nixpkgs/pkgs/development/python-modules/zope_configuration/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

34 lines
746 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;
hash = "sha256-giPqSvU5hmznqccwrH6xjlHRfrUVk6p3c7NZPI1tdgg=";
};
nativeCheckInputs = [ 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 ];
};
}