ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / aioinflux / default.nix
blob25aa7f587b25c41d9072e84ffa1465cfb1541769
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , aiohttp
5 , ciso8601
6 , pandas
7 }:
9 buildPythonPackage rec {
10   pname = "aioinflux";
11   version = "0.9.0";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1jy5mcg9wdz546s9wdwsgkxhm2ac4dmphd9vz243db39j1m0a3bj";
16   };
18   propagatedBuildInputs = [ aiohttp ciso8601 pandas ];
20   # Tests require InfluxDB server
21   doCheck = false;
23   pythonImportsCheck = [ "aioinflux" ];
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   };