1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #61494 from mkgvt/pytricia

pytricia: init at version 2019-01-16
This commit is contained in:
Mario Rodas 2019-05-18 22:47:06 -05:00 committed by GitHub
commit 6d7d657c5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -846,6 +846,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{ });