From a35aa06aa73e1971e505747ffdb0b9ea42cd104f Mon Sep 17 00:00:00 2001 From: Reno Dakota Date: Fri, 6 Dec 2024 03:11:43 +0000 Subject: [PATCH] python313Packages.immutables: 0.20 -> 0.21; fix python 3.13 https://github.com/MagicStack/immutables/releases/tag/v0.21 https://github.com/MagicStack/immutables/compare/v0.20...v0.21 --- .../development/python-modules/immutables/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/immutables/default.nix b/pkgs/development/python-modules/immutables/default.nix index 8ea8d2a89020..e2be3e56c744 100644 --- a/pkgs/development/python-modules/immutables/default.nix +++ b/pkgs/development/python-modules/immutables/default.nix @@ -2,28 +2,31 @@ lib, buildPythonPackage, fetchFromGitHub, + setuptools, pytestCheckHook, pythonOlder, }: buildPythonPackage rec { pname = "immutables"; - version = "0.20"; - format = "setuptools"; + version = "0.21"; + pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "MagicStack"; - repo = pname; + repo = "immutables"; rev = "refs/tags/v${version}"; - hash = "sha256-fEECtP6WQVzwSzBYX+CbhQtzkB/1WC3OYKXk2XY//xA="; + hash = "sha256-wZuCZEVXzycqA/h27RIe59e2QQALem8mfb3EdjwQr9w="; }; postPatch = '' rm tests/conftest.py ''; + build-system = [ setuptools ]; + nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [