python313Packages.dnspython: 2.7.0 -> 2.8.0 (#442151)

This commit is contained in:
Vladimír Čunát
2025-10-07 12:00:42 +02:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -6,14 +6,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "dnsdiag";
version = "2.6.0";
version = "2.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "farrokhi";
repo = "dnsdiag";
tag = "v${version}";
hash = "sha256-6TDs+ncbVa7LWtGLlqEXJb9zzXZ+nAhbi4QGyCSu3ho=";
hash = "sha256-VTxIKqc7yFTLx7VLEjb4UwPKAmSD+4X+ZHrmriScVGA=";
};
build-system = with python3.pkgs; [ setuptools ];
@@ -15,12 +15,12 @@
buildPythonPackage rec {
pname = "dnspython";
version = "2.7.0";
version = "2.8.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-zpxDLtoNyRz2GKXO3xpOFCZRGWu80sgOie1akH5c+vE=";
hash = "sha256-GB08aZZFLLEYnEBGxhWZuEpahuCZVi/9530mmE/ybQ8=";
};
build-system = [ hatchling ];