dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / development / python-modules / aioinflux / default.nix
blobef5f9bcf6340d36bac4d9f6113c549de6fd55fc6
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   aiohttp,
6   ciso8601,
7   pandas,
8 }:
10 buildPythonPackage rec {
11   pname = "aioinflux";
12   version = "0.9.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "1jy5mcg9wdz546s9wdwsgkxhm2ac4dmphd9vz243db39j1m0a3bj";
18   };
20   propagatedBuildInputs = [
21     aiohttp
22     ciso8601
23     pandas
24   ];
26   # Tests require InfluxDB server
27   doCheck = false;
29   pythonImportsCheck = [ "aioinflux" ];
31   meta = with lib; {
32     description = "Asynchronous Python client for InfluxDB";
33     homepage = "https://github.com/gusutabopb/aioinflux";
34     license = licenses.mit;
35     maintainers = with maintainers; [
36       liamdiprose
37       lopsided98
38     ];
39   };