Merge pull request #313004 from r-ryantm/auto-update/python311Packages.influxdb-client

python311Packages.influxdb-client: 1.42.0 -> 1.43.0
This commit is contained in:
Fabian Affolter 2024-05-20 09:26:55 +02:00 committed by GitHub
commit c35ab5774a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,23 +1,24 @@
{ lib
, aiohttp
, aiocsv
, buildPythonPackage
, certifi
, ciso8601
, fetchFromGitHub
, numpy
, pandas
, python-dateutil
, pythonOlder
, reactivex
, setuptools
, urllib3
{
lib,
aiohttp,
aiocsv,
buildPythonPackage,
certifi,
ciso8601,
fetchFromGitHub,
numpy,
pandas,
python-dateutil,
pythonOlder,
reactivex,
setuptools,
urllib3,
}:
buildPythonPackage rec {
pname = "influxdb-client";
version = "1.42.0";
format = "setuptools";
version = "1.43.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -25,10 +26,12 @@ buildPythonPackage rec {
owner = "influxdata";
repo = "influxdb-client-python";
rev = "refs/tags/v${version}";
hash = "sha256-PY0GpwO1OG4DKutMR3MF9HtTJbLFRCWypeoqVoiRD4o=";
hash = "sha256-CwSqJj9MslcvTzYGaDRygskSxbSh80uCJQM2tNz743k=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
certifi
python-dateutil
reactivex
@ -41,9 +44,7 @@ buildPythonPackage rec {
aiocsv
aiohttp
];
ciso = [
ciso8601
];
ciso = [ ciso8601 ];
extra = [
numpy
pandas
@ -53,9 +54,7 @@ buildPythonPackage rec {
# Requires influxdb server
doCheck = false;
pythonImportsCheck = [
"influxdb_client"
];
pythonImportsCheck = [ "influxdb_client" ];
meta = with lib; {
description = "InfluxDB client library";