mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
29 lines
627 B
Nix
29 lines
627 B
Nix
{ 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 ];
|
|
};
|
|
}
|