python313Packages.aiodns: 3.2.0 -> 3.3.0 (#404684)

This commit is contained in:
dotlambda
2025-05-21 16:07:42 -07:00
committed by GitHub
@@ -3,22 +3,19 @@
buildPythonPackage,
fetchFromGitHub,
pycares,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aiodns";
version = "3.2.0";
version = "3.3.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "saghul";
repo = "aiodns";
tag = "v${version}";
hash = "sha256-aXae9/x0HVp4KqydCf5/+p5PlSKUQ5cE3iVeD08rtf0=";
hash = "sha256-soWGqBKg/Qkm8lE7gKRIKspbtuZq+iTAbDkcQnAV0jc=";
};
build-system = [ setuptools ];
@@ -30,11 +27,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "aiodns" ];
meta = with lib; {
meta = {
description = "Simple DNS resolver for asyncio";
homepage = "https://github.com/saghul/aiodns";
changelog = "https://github.com/saghul/aiodns/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
changelog = "https://github.com/saghul/aiodns/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}