Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / aioinflux / default.nix
blobd45e02d1e91b02fd1eeab8abfc28a75e8846e981
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , aiohttp
5 , ciso8601
6 , pandas
7 }:
9 buildPythonPackage rec {
10   pname = "aioinflux";
11   version = "0.9.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "1jy5mcg9wdz546s9wdwsgkxhm2ac4dmphd9vz243db39j1m0a3bj";
17   };
19   propagatedBuildInputs = [ aiohttp ciso8601 pandas ];
21   # Tests require InfluxDB server
22   doCheck = false;
24   pythonImportsCheck = [ "aioinflux" ];
26   meta = with lib; {
27     description = "Asynchronous Python client for InfluxDB";
28     homepage = "https://github.com/gusutabopb/aioinflux";
29     license = licenses.mit;
30     maintainers = with maintainers; [ liamdiprose lopsided98 ];
31   };