biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pygtrie / default.nix
blob4f4743f04f33e173d42431f586cb1bd60af506db
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   ...
6 }:
7 buildPythonPackage 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   };