python3Packages.pygtrie: init at 2.3
This commit is contained in:
parent
558303ba07
commit
55d047fc0e
2 changed files with 17 additions and 0 deletions
15
pkgs/development/python-modules/pygtrie/default.nix
Normal file
15
pkgs/development/python-modules/pygtrie/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue