depot/third_party/nixpkgs/pkgs/development/python-modules/influxdb-client/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

66 lines
1.1 KiB
Nix

{ lib
, aiohttp
, aiocsv
, buildPythonPackage
, certifi
, ciso8601
, fetchFromGitHub
, numpy
, pandas
, python-dateutil
, pythonOlder
, reactivex
, setuptools
, urllib3
}:
buildPythonPackage rec {
pname = "influxdb-client";
version = "1.35.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "influxdata";
repo = "influxdb-client-python";
rev = "refs/tags/v${version}";
hash = "sha256-kewhNnbCmciywTkk/NTBqO02jN8IAW/MriH/DkhQkFU=";
};
propagatedBuildInputs = [
certifi
python-dateutil
reactivex
setuptools
urllib3
];
passthru.optional-dependencies = {
async = [
aiocsv
aiohttp
];
ciso = [
ciso8601
];
extra = [
numpy
pandas
];
};
# Requires influxdb server
doCheck = false;
pythonImportsCheck = [
"influxdb_client"
];
meta = with lib; {
description = "InfluxDB client library";
homepage = "https://github.com/influxdata/influxdb-client-python";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
};
}