python3Packages.unidns: init at 0.0.4

This commit is contained in:
Sarah Clark
2025-11-06 15:13:06 -08:00
parent 906721f29d
commit e859fbd5f1
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,47 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
asysocks,
}:
buildPythonPackage rec {
pname = "unidns";
version = "0.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "skelsec";
repo = "unidns";
tag = version;
hash = "sha256-uhTb27HeBaoI4yURpNf1+D6bWIXSsmYzUyk0RJmgbjQ=";
};
build-system = [
setuptools
];
pythonRelaxDeps = [
"asysocks"
];
dependencies = [
asysocks
];
# No tests provided
doCheck = false;
pythonImportsCheck = [
"unidns"
];
meta = {
description = "Basic async DNS library";
homepage = "https://github.com/skelsec/unidns";
changelog = "https://github.com/skelsec/unidns/releases/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sarahec ];
};
}
+2
View File
@@ -19672,6 +19672,8 @@ self: super: with self; {
unidiff = callPackage ../development/python-modules/unidiff { };
unidns = callPackage ../development/python-modules/unidns { };
unifi-ap = callPackage ../development/python-modules/unifi-ap { };
unifi-discovery = callPackage ../development/python-modules/unifi-discovery { };