python311Packages.zope-dottedname: 5.0 -> 6.0

Changelog: https://github.com/zopefoundation/zope.dottedname/blob/6.0/CHANGES.rst
This commit is contained in:
natsukium 2023-11-12 03:26:39 +09:00
parent f5cfec68e8
commit ecd068255f
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -1,19 +1,22 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "zope-dottedname";
version = "5.0";
version = "6.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "zope.dottedname";
inherit version;
hash = "sha256-mfWDqAKFhqtMIXlGE+QR0BDNCZF/RdqXa9/udI87++w=";
hash = "sha256-28S4W/vzSx74jasWJSrG7xbZBDnyIjstCiYs9Bnq6QI=";
};
nativeBuildInputs = [