python313Packages.radixtarget: init at 3.0.0
Radix implementation designed for lookups of IP addresses/networks and DNS hostnames https://github.com/blacklanternsecurity/radixtarget
This commit is contained in:
parent
4b74f823e6
commit
d2702bfbc1
37
pkgs/development/python-modules/radixtarget/default.nix
Normal file
37
pkgs/development/python-modules/radixtarget/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
poetry-core,
|
||||
poetry-dynamic-versioning,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "radixtarget";
|
||||
version = "3.0.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "blacklanternsecurity";
|
||||
repo = "radixtarget";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-C7QmiAc8SO7ddfseoGDYkmrkLoxmAGww9MPhBX94ucg=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
poetry-core
|
||||
poetry-dynamic-versioning
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "radixtarget" ];
|
||||
|
||||
meta = {
|
||||
description = "Radix implementation designed for lookups of IP addresses/networks and DNS hostnames";
|
||||
homepage = "https://github.com/blacklanternsecurity/radixtarget";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -15127,6 +15127,8 @@ self: super: with self; {
|
||||
|
||||
radish-bdd = callPackage ../development/python-modules/radish-bdd { };
|
||||
|
||||
radixtarget = callPackage ../development/python-modules/radixtarget { };
|
||||
|
||||
radon = callPackage ../development/python-modules/radon { };
|
||||
|
||||
railroad-diagrams = callPackage ../development/python-modules/railroad-diagrams { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user