python310Packages.dnspython: 2.3.0 -> 2.4.1

https://github.com/rthalley/dnspython/blob/v2.4.1/doc/whatsnew.rst
This commit is contained in:
Martin Weinelt 2023-07-28 02:41:31 +02:00
parent e0326ced66
commit 5444a903c6

View file

@ -9,29 +9,29 @@
, h2 , h2
, httpx , httpx
, idna , idna
, poetry-core
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, requests , requests
, requests-toolbelt , requests-toolbelt
, setuptools-scm
, sniffio , sniffio
, trio , trio
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "dnspython"; pname = "dnspython";
version = "2.3.0"; version = "2.4.1";
format = "setuptools"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-Ik4ysD60a+cOEu9tZOC+Ejpk5iGrTAgi/21FDVKlQLk="; hash = "sha256-wzlxx5r1vpaLuJfpXCRI4RpkXuhNk7Jlzgt6q+Xf3Kg=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
setuptools-scm poetry-core
]; ];
passthru.optional-dependencies = { passthru.optional-dependencies = {