python3Packages.influxdb3-python: 0.18.0 -> 0.19.0

Changelog: https://github.com/InfluxCommunity/influxdb3-python/releases/tag/v0.19.0
This commit is contained in:
Fabian Affolter
2026-05-08 17:03:36 +02:00
parent f3697c3ab3
commit 23f419dd3f
@@ -14,17 +14,19 @@
buildPythonPackage (finalAttrs: {
pname = "influxdb3-python";
version = "0.18.0";
version = "0.19.0";
pyproject = true;
src = fetchFromGitHub {
owner = "InfluxCommunity";
repo = "influxdb3-python";
tag = "v${finalAttrs.version}";
hash = "sha256-6IR1Jd/4cKk+79lh8NrfLfDtFQgEDEe9KCDIuOyUVsE=";
hash = "sha256-1wAJWQ2XHpmYUdrFaic57MTHwQt9711IZBsbVd6fZoM=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools>=82.0.1" "setuptools"
# Upstream falls back to a default version if not in a GitHub Actions
substituteInPlace setup.py \
--replace-fail "version=get_version()," "version = '${finalAttrs.version}',"