python3Packages.immutabledict: 4.2.1 -> 4.2.2

https://github.com/corenting/immutabledict/blob/v4.2.2/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2025-10-15 02:30:42 +02:00
parent 400bc8396c
commit d0e42d4d60

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