diff --git a/pkgs/development/python-modules/aiodns/default.nix b/pkgs/development/python-modules/aiodns/default.nix index dcced039f800..3e5f34ae5c7a 100644 --- a/pkgs/development/python-modules/aiodns/default.nix +++ b/pkgs/development/python-modules/aiodns/default.nix @@ -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 ]; }; }