From d0e42d4d6096b509ea27977457351b642b29bdf3 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 15 Oct 2025 02:30:42 +0200 Subject: [PATCH] python3Packages.immutabledict: 4.2.1 -> 4.2.2 https://github.com/corenting/immutabledict/blob/v4.2.2/CHANGELOG.md --- .../python-modules/immutabledict/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/immutabledict/default.nix b/pkgs/development/python-modules/immutabledict/default.nix index 0f8426de29ba..222cc3ffabd4 100644 --- a/pkgs/development/python-modules/immutabledict/default.nix +++ b/pkgs/development/python-modules/immutabledict/default.nix @@ -4,24 +4,21 @@ fetchFromGitHub, poetry-core, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "immutabledict"; - version = "4.2.1"; - format = "pyproject"; - - disabled = pythonOlder "3.7"; + version = "4.2.2"; + pyproject = true; src = fetchFromGitHub { owner = "corenting"; repo = "immutabledict"; tag = "v${version}"; - hash = "sha256-v2oOzvAa8KONZDQuxouai2B9d1RY4kZG/px2wl0KAyM="; + hash = "sha256-ymzOSPVe0Z82FAgVIagY9lyNiMiubXjSBnXIEwzwC20="; }; - nativeBuildInputs = [ poetry-core ]; + build-system = [ poetry-core ]; pythonImportsCheck = [ "immutabledict" ];