Merge pull request #198334 from fabaff/immutabledict-bump

python310Packages.immutabledict: 2.2.1 -> 2.2.2
This commit is contained in:
Fabian Affolter 2022-10-29 09:35:32 +02:00 committed by GitHub
commit ac597eab64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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