python312Packages.aiodns: 3.1.1 -> 3.2.0

Diff: https://github.com/saghul/aiodns/compare/refs/tags/v3.1.1...v3.2.0

Changelog: https://github.com/saghul/aiodns/releases/tag/v3.2.0
This commit is contained in:
Fabian Affolter 2024-04-18 21:29:52 +02:00 committed by Martin Weinelt
parent 755dddb2b1
commit 08a04383b6
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,40 +1,34 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pycares
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pycares,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aiodns";
version = "3.1.1";
version = "3.2.0";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "saghul";
repo = "aiodns";
rev = "refs/tags/v${version}";
sha256 = "sha256-JZS53kICsrXDot3CKjG30AOjkYycKpMJvC9yS3c1v5Q=";
hash = "sha256-aXae9/x0HVp4KqydCf5/+p5PlSKUQ5cE3iVeD08rtf0=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
pycares
];
dependencies = [ pycares ];
# Could not contact DNS servers
doCheck = false;
pythonImportsCheck = [
"aiodns"
];
pythonImportsCheck = [ "aiodns" ];
meta = with lib; {
description = "Simple DNS resolver for asyncio";