1{ lib, buildPythonPackage, fetchPypi, pythonOlder }: 2 3buildPythonPackage rec { 4 pname = "immutables"; 5 version = "0.6"; 6 disabled = pythonOlder "3.5"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "63023fa0cceedc62e0d1535cd4ca7a1f6df3120a6d8e5c34e89037402a6fd809"; 11 }; 12 13 meta = { 14 description = "An immutable mapping type for Python"; 15 homepage = https://github.com/MagicStack/immutables; 16 license = with lib.licenses; [ asl20 ]; 17 maintainers = with lib.maintainers; [ catern ]; 18 }; 19}