9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.8";
16 src = fetchFromGitHub {
19 rev = "refs/tags/v${version}";
20 hash = "sha256-fEECtP6WQVzwSzBYX+CbhQtzkB/1WC3OYKXk2XY//xA=";
27 nativeCheckInputs = [ pytestCheckHook ];
35 # avoid dependency on mypy
39 pythonImportsCheck = [ "immutables" ];
42 description = "Immutable mapping type";
43 homepage = "https://github.com/MagicStack/immutables";
44 changelog = "https://github.com/MagicStack/immutables/releases/tag/v${version}";
45 license = with licenses; [ asl20 ];
46 maintainers = with maintainers; [ catern ];