mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-07 09:33:12 -05:00
I have effectively renounced on maintaining all these packages and I do not plan to return them except if I'm forced to. I am also fine with most of these packages being dropped for next releases if no maintainer shows up. Change-Id: I8d167c8029b6991181bd7a094af21c3313af2b51 Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
43 lines
771 B
Nix
43 lines
771 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 = {
|
|
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 = [ ];
|
|
};
|
|
}
|