Merge pull request #187535 from r-ryantm/auto-update/python310Packages.influxdb-client

python310Packages.influxdb-client: 1.30.0 -> 1.31.0
This commit is contained in:
Fabian Affolter 2022-08-20 12:26:11 +02:00 committed by GitHub
commit 1131676bb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, rx
@ -14,16 +15,16 @@
buildPythonPackage rec {
pname = "influxdb-client";
version = "1.30.0";
version = "1.31.0";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "influxdata";
repo = "influxdb-client-python";
rev = "refs/tags/v${version}";
hash = "sha256-YGKFvRy76/klXhJ8Cdgqv9YqCq4E6XIiwWXl8W9fRX4=";
hash = "sha256-gTJgY4vFgmFDn2WYUKEbvbu7hjxcw2QGI+blensS5BI=";
};
propagatedBuildInputs = [
@ -33,10 +34,18 @@ buildPythonPackage rec {
python-dateutil
setuptools
urllib3
ciso8601
pytz
];
passthru.optional-dependencies = {
async = [
aiohttp
];
ciso = [
ciso8601
];
};
# requires influxdb server
doCheck = false;