summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pygtrie/default.nix
blob: 68f76e9a9d596c6edddad1b518415792ce5e2248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  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 ];
  };
}