0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

python3Packages.zope-contenttype: 5.1 -> 5.2

https://github.com/zopefoundation/zope.contenttype/blob/5.2/CHANGES.rst

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt 2025-04-01 07:15:02 +02:00
parent 168948831e
commit fe1859a022
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,22 +1,28 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "zope-contenttype";
version = "5.1";
version = "5.2";
pyproject = true;
src = fetchPypi {
pname = "zope.contenttype";
inherit version;
hash = "sha256-AAHvG2XKZQUZBW3OUwxY0LOWlXzPBQIyPIoVSdtk0xc=";
src = fetchFromGitHub {
owner = "zopefoundation";
repo = "zope.contenttype";
tag = version;
hash = "sha256-mY6LlJn44hUfXpxEa99U6FNcsV9xJbR5w/iIS6hG+m4=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools <= 75.6.0" setuptools
'';
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];