Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 548 B view raw
1{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy38 }: 2 3buildPythonPackage rec { 4 pname = "immutables"; 5 version = "0.11"; 6 disabled = pythonOlder "3.5"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "d6850578a0dc6530ac19113cfe4ddc13903df635212d498f176fe601a8a5a4a3"; 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 broken = isPy38; 19 }; 20}