python311Packages.nextdns: 1.4.0 -> 2.0.0

Diff: https://github.com/bieniu/nextdns/compare/refs/tags/1.4.0...2.0.0

Changelog: https://github.com/bieniu/nextdns/releases/tag/2.0.0
This commit is contained in:
Fabian Affolter 2023-10-25 21:53:42 +02:00
parent 4846c1afdf
commit f352652643

View File

@ -12,16 +12,16 @@
buildPythonPackage rec {
pname = "nextdns";
version = "1.4.0";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "bieniu";
repo = pname;
repo = "nextdns";
rev = "refs/tags/${version}";
hash = "sha256-fW/fLbL4IMLN6LmFijH4+ew+cDdJY9tOha+010YEfNs=";
hash = "sha256-AgxBJXPBYkJR8W8tGKcHJaAP52guNVvm190ZlZ9BhA4=";
};
propagatedBuildInputs = [
@ -41,9 +41,9 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/bieniu/nextdns/releases/tag/${version}";
description = "Module for the NextDNS API";
homepage = "https://github.com/bieniu/nextdns";
changelog = "https://github.com/bieniu/nextdns/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};