Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #235293 from fabaff/netdata-bump

python311Packages.netdata: 1.0.3 -> 1.1.0

authored by

Nick Cao and committed by
GitHub
56a167b4 261e67e8

+4 -3
+4 -3
pkgs/development/python-modules/netdata/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "netdata"; 15 - version = "1.0.3"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchFromGitHub { 21 owner = "home-assistant-ecosystem"; 22 repo = "python-netdata"; 23 - rev = version; 24 - hash = "sha256-vrXXvCoZ1jErlxTcjGbtA8Uio7UDxnt3aNb9FQ0PkrU="; 25 }; 26 27 nativeBuildInputs = [ ··· 46 meta = with lib; { 47 description = "Python API for interacting with Netdata"; 48 homepage = "https://github.com/home-assistant-ecosystem/python-netdata"; 49 license = with licenses; [ mit ]; 50 maintainers = with maintainers; [ fab ]; 51 };
··· 12 13 buildPythonPackage rec { 14 pname = "netdata"; 15 + version = "1.1.0"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchFromGitHub { 21 owner = "home-assistant-ecosystem"; 22 repo = "python-netdata"; 23 + rev = "refs/tags/${version}"; 24 + hash = "sha256-XWlUSKGgndHtJjzA0mYvhCkJsRJ1SUbl8DGdmyFUmoo="; 25 }; 26 27 nativeBuildInputs = [ ··· 46 meta = with lib; { 47 description = "Python API for interacting with Netdata"; 48 homepage = "https://github.com/home-assistant-ecosystem/python-netdata"; 49 + changelog = "https://github.com/home-assistant-ecosystem/python-netdata/releases/tag/${version}"; 50 license = with licenses; [ mit ]; 51 maintainers = with maintainers; [ fab ]; 52 };