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:
parent
168948831e
commit
fe1859a022
1 changed files with 12 additions and 6 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue