Merge pull request #61494 from mkgvt/pytricia
pytricia: init at version 2019-01-16
This commit is contained in:
commit
6d7d657c5a
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/pytricia/default.nix
Normal file
23
pkgs/development/python-modules/pytricia/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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{ });
|
||||
|
|
Loading…
Reference in a new issue