Files
Robert Schütz 8e3eb65c3c python3Packages.aiodns: 4.0.3 -> 4.0.4
Diff: https://github.com/saghul/aiodns/compare/v4.0.3...v4.0.4

Changelog: https://github.com/saghul/aiodns/releases/tag/v4.0.4
(cherry picked from commit a53c6a3897)
(cherry picked from commit 10cf133bbf1f994932c9544c80c0efd62be8203e)
2026-06-22 08:15:10 +02:00

38 lines
800 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pycares,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "aiodns";
version = "4.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "saghul";
repo = "aiodns";
tag = "v${finalAttrs.version}";
hash = "sha256-TLiiSRhZaEbHeyrQPk8uvj10VEttRanYEgkBy7DxH4Y=";
};
build-system = [ setuptools ];
dependencies = [ pycares ];
# Could not contact DNS servers
doCheck = false;
pythonImportsCheck = [ "aiodns" ];
meta = {
description = "Simple DNS resolver for asyncio";
homepage = "https://github.com/saghul/aiodns";
changelog = "https://github.com/saghul/aiodns/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})