pytricia: init at version 2019-01-16

This commit is contained in:
Mark Gardner 2019-05-14 10:13:14 -04:00 committed by Mario Rodas
parent faf5e8ad8c
commit 8102e2ce3b
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "pytricia";
version = "unstable-2019-01-16";
src = fetchFromGitHub {
owner = "jsommers";
repo = pname;
rev = "4ba88f68c3125f789ca8cd1cfae156e1464bde87";
sha256 = "0qp5774xkm700g35k5c76pck8pdzqlyzbaqgrz76a1yh67s2ri8h";
};
meta = with stdenv.lib; {
description = "A library for fast IP address lookup in Python";
homepage = https://github.com/jsommers/pytricia;
license = with licenses; [ lgpl3Plus ];
maintainers = with maintainers; [ mkg ];
};
}

View file

@ -838,6 +838,8 @@ in {
pytimeparse = callPackage ../development/python-modules/pytimeparse { };
pytricia = callPackage ../development/python-modules/pytricia { };
PyWebDAV = callPackage ../development/python-modules/pywebdav { };
pyxml = disabledIf isPy3k (callPackage ../development/python-modules/pyxml{ });