Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 ... 6}: 7buildPythonPackage rec { 8 pname = "pygtrie"; 9 version = "2.5.0"; 10 format = "setuptools"; 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-IDUUrYJutAPasdLi3dA04NFTS75NvgITuwWT9mvrpOI="; 14 }; 15 meta = { 16 homepage = "https://github.com/mina86/pygtrie"; 17 description = "Trie data structure implementation"; 18 license = lib.licenses.asl20; 19 maintainers = with lib.maintainers; [ kmein ]; 20 }; 21}