Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pygtrie / default.nix
blob8ee176e80c2f33abddb353abb3449b46627283d1
1 { lib, fetchPypi, buildPythonPackage, ... }:
2 buildPythonPackage rec {
3   pname = "pygtrie";
4   version = "2.4.2";
5   src = fetchPypi {
6     inherit pname version;
7     sha256 = "43205559d28863358dbbf25045029f58e2ab357317a59b11f11ade278ac64692";
8   };
9   meta = {
10     homepage = "https://github.com/mina86/pygtrie";
11     description = "Trie data structure implementation";
12     license = lib.licenses.asl20;
13     maintainers = with lib.maintainers; [ kmein ];
14   };