python3Packages.immutabledict: 4.2.1 -> 4.2.2 (#452113)

This commit is contained in:
Martin Weinelt
2025-10-15 00:56:50 +00:00
committed by GitHub

View File

@@ -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" ];