fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
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.43.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "influxdata";
|
|
repo = "influxdb-client-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-CwSqJj9MslcvTzYGaDRygskSxbSh80uCJQM2tNz743k=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
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";
|
|
changelog = "https://github.com/influxdata/influxdb-client-python/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
};
|
|
}
|