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, fetchFromGitHub,
poetry-core, poetry-core,
pytestCheckHook, pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "immutabledict"; pname = "immutabledict";
version = "4.2.1"; version = "4.2.2";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "corenting"; owner = "corenting";
repo = "immutabledict"; repo = "immutabledict";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-v2oOzvAa8KONZDQuxouai2B9d1RY4kZG/px2wl0KAyM="; hash = "sha256-ymzOSPVe0Z82FAgVIagY9lyNiMiubXjSBnXIEwzwC20=";
}; };
nativeBuildInputs = [ poetry-core ]; build-system = [ poetry-core ];
pythonImportsCheck = [ "immutabledict" ]; pythonImportsCheck = [ "immutabledict" ];