mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 07:04:25 +00:00
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:
commit
1131676bb0
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user