1{ lib
2, buildPythonPackage
3, fetchPypi
4, aiohttp
5, ciso8601
6, pandas
7}:
8
9buildPythonPackage rec {
10 pname = "aioinflux";
11 version = "0.9.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "1jy5mcg9wdz546s9wdwsgkxhm2ac4dmphd9vz243db39j1m0a3bj";
16 };
17
18 propagatedBuildInputs = [ aiohttp ciso8601 pandas ];
19
20 # Tests require InfluxDB server
21 doCheck = false;
22
23 pythonImportsCheck = [ "aioinflux" ];
24
25 meta = with lib; {
26 description = "Asynchronous Python client for InfluxDB";
27 homepage = "https://github.com/gusutabopb/aioinflux";
28 license = licenses.mit;
29 maintainers = with maintainers; [ liamdiprose lopsided98 ];
30 };
31}