1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

python312Packages.nextdns: 3.3.0 -> 4.0.0 (#356247)

This commit is contained in:
Nick Cao 2024-11-16 09:20:27 -05:00 committed by GitHub
commit 426e6abefd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,16 +15,16 @@
buildPythonPackage rec {
pname = "nextdns";
version = "3.3.0";
version = "4.0.0";
pyproject = true;
disabled = pythonOlder "3.11";
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "bieniu";
repo = "nextdns";
rev = "refs/tags/${version}";
hash = "sha256-WNdS8sAW7Ci8w8diYIsrVADvpgMSDuM0NLBTw7irzKg=";
hash = "sha256-2BT47Dg+1TLDUccdb0Q/r3QzpRURTwFlUORbQpmIJzc=";
};
build-system = [ setuptools ];