nixpkgs/pkgs/development/python-modules/netdata-pandas/default.nix
Raito Bezarius 17f3d20478 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>
2024-06-19 22:30:04 +02:00

43 lines
809 B
Nix

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