nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.pynetbox: 6.6.2 -> 7.0.0

https://github.com/netbox-community/pynetbox/releases/tag/v7.0.0

authored by

R. Ryantm and committed by
Martin Weinelt
3dda6800 e2b79f08

+4 -2
+4 -2
pkgs/development/python-modules/pynetbox/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pynetbox"; 13 - version = "6.6.2"; 13 + version = "7.0.0"; 14 + format = "setuptools"; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "netbox-community"; 17 18 repo = pname; 18 19 rev = "refs/tags/v${version}"; 19 - sha256 = "sha256-W5ukrhqJTgOXM9MnbZWvNy9TCoEUGrFYfD+zGGNU07w="; 20 + hash = "sha256-PFSnINbXSnEo1gvntjfH6KCVa/LeaNrsiuWM4H+fOvQ="; 20 21 }; 21 22 22 23 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 42 41 ]; 43 42 44 43 meta = with lib; { 44 + changelog = "https://github.com/netbox-community/pynetbox/releases/tag/v${version}"; 45 45 description = "API client library for Netbox"; 46 46 homepage = "https://github.com/netbox-community/pynetbox"; 47 47 license = licenses.asl20;