nixpkgs/pkgs/development/python-modules/netdata-pandas/default.nix
Raito Bezarius c6c504941a pkgs/*: drop maintenanceship of various packages
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>
(cherry picked from commit 6a63a4ad8b)
2026-06-29 11:42:33 +00:00

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 = [ ];
};
}