mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
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:
commit
c35ab5774a
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user