18 buildPythonPackage rec {
19 pname = "influxdb-client";
23 disabled = pythonOlder "3.7";
25 src = fetchFromGitHub {
27 repo = "influxdb-client-python";
28 rev = "refs/tags/v${version}";
29 hash = "sha256-1QWy+mdVttowdbIBmtW6gYwkJ4p9sL0D+DxsHk3xgvc=";
32 build-system = [ setuptools ];
42 optional-dependencies = {
54 # Requires influxdb server
57 pythonImportsCheck = [ "influxdb_client" ];
60 description = "InfluxDB client library";
61 homepage = "https://github.com/influxdata/influxdb-client-python";
62 changelog = "https://github.com/influxdata/influxdb-client-python/blob/v${version}/CHANGELOG.md";
63 license = licenses.mit;
64 maintainers = with maintainers; [ mic92 ];