blob: cbf8838ef090b17a6df49b90971d8de24a52b377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
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 = {
description = "Library to pull data from the netdata REST API into a pandas dataframe";
homepage = "https://github.com/netdata/netdata-pandas";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ raitobezarius ];
};
}
|