python310Packages.immutables: 0.17 -> 0.18

This commit is contained in:
Fabian Affolter
2022-06-06 11:46:34 -07:00
committed by Jonathan Ringer
parent a91744fb8b
commit 269e8cfefb
@@ -9,17 +9,19 @@
buildPythonPackage rec {
pname = "immutables";
version = "0.17";
version = "0.18";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "MagicStack";
repo = pname;
rev = "v${version}";
sha256 = "sha256-4VuB8eTWHD4hEDj11u/talfv38h2BhogSZmEVyUtnko=";
hash = "sha256-lXCoPTcpTOv9K0xCVjbrP3qlzP9tfk/e3Rk3oOmbS/Y=";
};
propagatedBuildInputs = [
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
typing-extensions
];
@@ -33,10 +35,12 @@ buildPythonPackage rec {
"testMypyImmu"
];
pythonImportsCheck = [ "immutables" ];
pythonImportsCheck = [
"immutables"
];
meta = with lib; {
description = "An immutable mapping type for Python";
description = "An immutable mapping type";
homepage = "https://github.com/MagicStack/immutables";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ catern ];