24fdeddc0a
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
aiocsv,
|
|
buildPythonPackage,
|
|
certifi,
|
|
ciso8601,
|
|
fetchFromGitHub,
|
|
numpy,
|
|
pandas,
|
|
python-dateutil,
|
|
pythonOlder,
|
|
reactivex,
|
|
setuptools,
|
|
urllib3,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "influxdb-client";
|
|
version = "1.47.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "influxdata";
|
|
repo = "influxdb-client-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-1QWy+mdVttowdbIBmtW6gYwkJ4p9sL0D+DxsHk3xgvc=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
certifi
|
|
python-dateutil
|
|
reactivex
|
|
setuptools
|
|
urllib3
|
|
];
|
|
|
|
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";
|
|
changelog = "https://github.com/influxdata/influxdb-client-python/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
};
|
|
}
|