15 buildPythonPackage rec {
16 pname = "influxdb-client";
19 disabled = pythonOlder "3.6"; # requires python version >=3.6
21 src = fetchFromGitHub {
23 repo = "influxdb-client-python";
25 sha256 = "1b2xh78v965rgafyj7cdbjm2p96d74f7ifsqllc7242n9wv3k53q";
28 # makes test not reproducible
30 sed -i -e '/randomize/d' test-requirements.txt
33 propagatedBuildInputs = [
44 # requires influxdb server
48 description = "InfluxDB 2.0 Python client library";
49 homepage = "https://github.com/influxdata/influxdb-client-python";
50 license = licenses.mit;
51 maintainers = [ maintainers.mic92 ];