mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-30 06:01:19 +00:00
dnsdiag: init at 2.5.0 (#348593)
This commit is contained in:
commit
7bca431441
40
pkgs/by-name/dn/dnsdiag/package.nix
Normal file
40
pkgs/by-name/dn/dnsdiag/package.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
python3,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "dnsdiag";
|
||||
version = "2.5.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "farrokhi";
|
||||
repo = "dnsdiag";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-qUbHwbLPDyy24GNu3dDJQKV3B71q1ODNMyRFIWwyRuo=";
|
||||
};
|
||||
|
||||
build-system = with python3.pkgs; [ setuptools ];
|
||||
|
||||
dependencies = with python3.pkgs; [
|
||||
cryptography
|
||||
cymruwhois
|
||||
dnspython
|
||||
h2
|
||||
httpx
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "DNS Measurement, Troubleshooting and Security Auditing Toolset";
|
||||
homepage = "https://github.com/farrokhi/dnsdiag";
|
||||
changelog = "https://github.com/farrokhi/dnsdiag/releases/tag/v${version}";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "dnsdiag";
|
||||
};
|
||||
}
|
48
pkgs/development/python-modules/cymruwhois/default.nix
Normal file
48
pkgs/development/python-modules/cymruwhois/default.nix
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
python-memcached,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cymruwhois";
|
||||
version = "1.6";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JustinAzoff";
|
||||
repo = "python-cymruwhois";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-d9m668JYI9mxUycoVWyaDCR7SOca+ebymZxWtgSPWNU=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
optional-dependencies = {
|
||||
CACHE = [ python-memcached ];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "cymruwhois" ];
|
||||
|
||||
disabledTests = [
|
||||
# Tests require network access
|
||||
"test_asn"
|
||||
# AssertionError
|
||||
"test_doctest"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Python client for the whois.cymru.com service";
|
||||
homepage = "https://github.com/JustinAzoff/python-cymruwhois";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -2802,6 +2802,8 @@ self: super: with self; {
|
||||
|
||||
cymem = callPackage ../development/python-modules/cymem { };
|
||||
|
||||
cymruwhois = callPackage ../development/python-modules/cymruwhois { };
|
||||
|
||||
cypari2 = callPackage ../development/python-modules/cypari2 { };
|
||||
|
||||
cypherpunkpay = callPackage ../development/python-modules/cypherpunkpay { };
|
||||
|
Loading…
Reference in New Issue
Block a user