python310Packages.immutabledict: 2.2.1 -> 2.2.2

This commit is contained in:
Fabian Affolter 2022-10-28 21:54:46 +02:00
parent 52b1e28293
commit 531e78ff11

View File

@ -3,18 +3,21 @@
, fetchFromGitHub , fetchFromGitHub
, poetry-core , poetry-core
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "immutabledict"; pname = "immutabledict";
version = "2.2.1"; version = "2.2.2";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "corenting"; owner = "corenting";
repo = "immutabledict"; repo = "immutabledict";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-z04xxoCw0eBtkt++y/1yUsAPaLlAGUtWBdRBM74ul1c="; hash = "sha256-YqUxkpFl2G/LFLtFWqocXbFvgVhqqiquoWNIIO9c/6o=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -36,4 +39,3 @@ buildPythonPackage rec {
maintainers = with maintainers; [ hexa ]; maintainers = with maintainers; [ hexa ];
}; };
} }