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

dotlambda 96d5dd1d 23bd422e

Changed files
+6 -9
pkgs
development
python-modules
aiodns
+6 -9
pkgs/development/python-modules/aiodns/default.nix
···
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 ];
···
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 ];
};
}