python314Packages.iteration-utilities: fix build (#481743)

This commit is contained in:
dotlambda
2026-01-20 19:21:39 +00:00
committed by GitHub
@@ -2,13 +2,15 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "iteration-utilities";
version = "0.13.0";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "MSeifert04";
@@ -17,6 +19,16 @@ buildPythonPackage rec {
hash = "sha256-SiqNUyuvsD5m5qz5ByYyVln3SSa4/D4EHpmM+pf8ngM=";
};
patches = [
(fetchpatch {
name = "python314-compat.patch";
url = "https://github.com/MSeifert04/iteration_utilities/pull/347.patch";
hash = "sha256-1BzUTbzxIw4kExdrAlS4Pbh1zPweyU78ln2qGL7XL58=";
})
];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "iteration_utilities" ];