python311Packages.zope-contenttype: 4.6 -> 5.1

Changelog: https://github.com/zopefoundation/zope.contenttype/blob/5.1/CHANGES.rst
This commit is contained in:
natsukium 2023-10-11 11:06:15 +09:00
parent c3cf8c3f92
commit 678b644bdc
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, zope_testrunner
, pytestCheckHook
@ -8,13 +9,15 @@
buildPythonPackage rec {
pname = "zope-contenttype";
version = "4.6";
version = "5.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "zope.contenttype";
inherit version;
hash = "sha256-NnVoeLxSWzY2TQ1b2ZovCw/TuaUND+m73Eqxs4rCOAA=";
hash = "sha256-AAHvG2XKZQUZBW3OUwxY0LOWlXzPBQIyPIoVSdtk0xc=";
};
nativeBuildInputs = [