Unverified Commit b23fa881 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

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

parents a895df40 74d7b3cd
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -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" ];