py-radix: init at version 0.10.0 (#61251)
* py-radix: init at version 0.10.0
This commit is contained in:
parent
6722aafe7f
commit
715dfd0b80
28
pkgs/development/python-modules/py-radix/default.nix
Normal file
28
pkgs/development/python-modules/py-radix/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, coverage
|
||||||
|
, nose
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "py-radix";
|
||||||
|
version = "0.10.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mjschultz";
|
||||||
|
repo = "py-radix";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "01xyn9lg6laavnzczf5bck1l1c2718ihxx0hvdkclnnxjqhbrqis";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkInputs = [ coverage nose ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Python radix tree for IPv4 and IPv6 prefix matching";
|
||||||
|
homepage = https://github.com/mjschultz/py-radix;
|
||||||
|
license = with licenses; [ isc bsdOriginal ];
|
||||||
|
maintainers = with maintainers; [ mkg ];
|
||||||
|
};
|
||||||
|
}
|
@ -665,6 +665,8 @@ in {
|
|||||||
|
|
||||||
py-lru-cache = callPackage ../development/python-modules/py-lru-cache { };
|
py-lru-cache = callPackage ../development/python-modules/py-lru-cache { };
|
||||||
|
|
||||||
|
py-radix = callPackage ../development/python-modules/py-radix { };
|
||||||
|
|
||||||
pydbus = callPackage ../development/python-modules/pydbus { };
|
pydbus = callPackage ../development/python-modules/pydbus { };
|
||||||
|
|
||||||
pydocstyle = callPackage ../development/python-modules/pydocstyle { };
|
pydocstyle = callPackage ../development/python-modules/pydocstyle { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user