python3Packages.pygtrie: init at 2.3

This commit is contained in:
Kierán Meinhardt 2020-10-21 15:50:12 +02:00
parent 558303ba07
commit 55d047fc0e
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, fetchPypi, buildPythonPackage, ... }:
buildPythonPackage rec {
pname = "pygtrie";
version = "2.3";
src = fetchPypi {
inherit pname version;
sha256 = "00x7q4p9r75zdnw3a8vd0d0w0i5l28w408g5bsfl787yv6b1h9i8";
};
meta = {
homepage = "https://github.com/mina86/pygtrie";
description = "Trie data structure implementation";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kmein ];
};
}

View file

@ -5023,6 +5023,8 @@ in {
pygtksourceview = callPackage ../development/python-modules/pygtksourceview { inherit (pkgs) pkgconfig; };
pygtrie = callPackage ../development/python-modules/pygtrie { };
pyhamcrest = if isPy3k then
callPackage ../development/python-modules/pyhamcrest { }
else