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