located with `rg '^ *\.\.\.$' -tnix -l pkgs | xargs grep @ -L | grep -E '/(default|package)\.nix$'`
21 lines
468 B
Nix
21 lines
468 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "pygtrie";
|
|
version = "2.5.0";
|
|
format = "setuptools";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-IDUUrYJutAPasdLi3dA04NFTS75NvgITuwWT9mvrpOI=";
|
|
};
|
|
meta = {
|
|
homepage = "https://github.com/mina86/pygtrie";
|
|
description = "Trie data structure implementation";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ kmein ];
|
|
};
|
|
}
|