mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
25d33b8c78
Diff: https://github.com/farrokhi/dnsdiag/compare/refs/tags/v2.5.0...v2.6.0 Changelog: https://github.com/farrokhi/dnsdiag/releases/tag/v2.6.0
42 lines
891 B
Nix
42 lines
891 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "dnsdiag";
|
|
version = "2.6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "farrokhi";
|
|
repo = "dnsdiag";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-6TDs+ncbVa7LWtGLlqEXJb9zzXZ+nAhbi4QGyCSu3ho=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
aioquic
|
|
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";
|
|
};
|
|
}
|