17 buildPythonPackage rec {
18 pname = "influxdb-client";
20 format = "setuptools";
22 disabled = pythonOlder "3.7";
24 src = fetchFromGitHub {
26 repo = "influxdb-client-python";
27 rev = "refs/tags/v${version}";
28 hash = "sha256-oE0RPryuUJcy6HN3V2XIxipGYU41xrYMC7b0sGRfay8=";
31 propagatedBuildInputs = [
39 passthru.optional-dependencies = {
53 # Requires influxdb server
56 pythonImportsCheck = [
61 description = "InfluxDB client library";
62 homepage = "https://github.com/influxdata/influxdb-client-python";
63 changelog = "https://github.com/influxdata/influxdb-client-python/blob/v${version}/CHANGELOG.md";
64 license = licenses.mit;
65 maintainers = with maintainers; [ mic92 ];