python3Packages.netdata-pandas: init at 0.0.41

A helper library to pull data from the netdata REST API into a pandas dataframe.

Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
Raito Bezarius 2024-03-24 16:54:31 +01:00
parent e688a60e69
commit 17f3d20478
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pandas
, requests
, trio
, asks
}:
buildPythonPackage rec {
pname = "netdata-pandas";
version = "0.0.41";
pyproject = true;
src = fetchFromGitHub {
owner = "netdata";
repo = "netdata-pandas";
rev = "v${version}";
hash = "sha256-AXt8BKWyM3glm5hrRryb+vBzs3z2x61HhbR6DDZkh9o=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
pandas
requests
trio
asks
];
pythonImportsCheck = [ "netdata_pandas" ];
meta = with lib; {
description = "A helper library to pull data from the netdata REST API into a pandas dataframe.";
homepage = "https://github.com/netdata/netdata-pandas";
license = licenses.asl20;
maintainers = with maintainers; [ raitobezarius ];
};
}

View File

@ -8674,6 +8674,8 @@ self: super: with self; {
netdata = callPackage ../development/python-modules/netdata { };
netdata-pandas = callPackage ../development/python-modules/netdata-pandas { };
netdisco = callPackage ../development/python-modules/netdisco { };
nethsm = callPackage ../development/python-modules/nethsm { };