c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
66 lines
1.1 KiB
Nix
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.33.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "influxdata";
|
|
repo = "influxdb-client-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-RhUIdIwLYJwlpLtyrXO9GCvKY6OLDJl7Aop5acgTHN0=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|