Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / prometheus-pandas / default.nix
blobff7cadd8f58b245a7317f13467bb57a0a8000799
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , numpy
6 , pandas
7 }:
9 buildPythonPackage rec {
10   pname = "prometheus-pandas";
11   version = "0.3.3";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-1eaTmNui3cAisKEhBMEpOv+UndJZwb4GGK2M76xiy7k=";
17   };
19   nativeBuildInputs = [
20     setuptools
21   ];
23   propagatedBuildInputs = [
24     numpy
25     pandas
26   ];
28   # There are no tests. :(
29   doCheck = false;
31   pythonImportsCheck = [
32     "prometheus_pandas"
33   ];
35   meta = with lib; {
36     homepage = "https://github.com/dcoles/prometheus-pandas";
37     license = licenses.mit;
38     description = "Pandas integration for Prometheus";
39     maintainers = with maintainers; [ viktornordling ];
40   };