linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / netdata / default.nix
blob3b1ccbb73f70a58a04ad7944930ca4ed490e67e0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , aiohttp
5 , async-timeout
6 }:
8 buildPythonPackage rec {
9   pname = "netdata";
10   version = "0.2.1";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-oGOT4RvftI/2Ri2icM/AtglNZXt10jkFh/rlr6A46YE=";
15   };
17   propagatedBuildInputs = [
18     aiohttp
19     async-timeout
20   ];
22   # no tests are present
23   doCheck = false;
25   pythonImportsCheck = [ "netdata" ];
27   meta = with lib; {
28     description = "Python API for interacting with Netdata";
29     homepage = "https://github.com/home-assistant-ecosystem/python-netdata";
30     license = with licenses; [ mit ];
31     maintainers = with maintainers; [ fab ];
32   };