py-radix: init at version 0.10.0 (#61251)

* py-radix: init at version 0.10.0
This commit is contained in:
mkgvt
2019-05-13 17:15:34 -04:00
committed by Renaud
parent 6722aafe7f
commit 715dfd0b80
2 changed files with 30 additions and 0 deletions

View 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 ];
};
}