Merge pull request #263422 from fabaff/nextdns-bump

python311Packages.nextdns: 1.4.0 -> 2.0.0
This commit is contained in:
Nick Cao 2023-10-27 12:42:27 -04:00 committed by GitHub
commit caeeaa168c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ];
};