fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
21 lines
474 B
Nix
21 lines
474 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 ];
|
|
};
|
|
}
|