python3Packages.aiodns: 3.4.0 -> 3.5.0 (#422121)

This commit is contained in:
Martin Weinelt 2025-07-04 02:48:45 +02:00 committed by GitHub
commit 22f4a3935b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 7 deletions

View File

@ -8,14 +8,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiodns"; pname = "aiodns";
version = "3.4.0"; version = "3.5.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "saghul"; owner = "saghul";
repo = "aiodns"; repo = "aiodns";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-y3QuMj2y/V6orM+1+cbUCgj0UL8sXQVzLLYXLnBdlio="; hash = "sha256-qabXwvJzZ4bq0R2Wkb0terZgjnRRt0/ymLcJkxChR6s=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];

View File

@ -7,24 +7,27 @@
fetchPypi, fetchPypi,
idna, idna,
pythonOlder, pythonOlder,
setuptools,
tornado, tornado,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pycares"; pname = "pycares";
version = "4.8.0"; version = "4.9.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-L8Lr+rlg9lSz488IpzJIaVDamTk6ZX+LRGGK0+0tOcE="; hash = "sha256-juSE3bI9vsTYjRTtW21ZLBlg0uk8OF1eUrb61WTYI5U=";
}; };
build-system = [ setuptools ];
buildInputs = [ c-ares ]; buildInputs = [ c-ares ];
propagatedBuildInputs = [ dependencies = [
cffi cffi
idna idna
]; ];
@ -43,7 +46,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python interface for c-ares"; description = "Python interface for c-ares";
homepage = "https://github.com/saghul/pycares"; homepage = "https://github.com/saghul/pycares";
changelog = "https://github.com/saghul/pycares/releases/tag/pycares-${version}"; changelog = "https://github.com/saghul/pycares/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };