fffcccfb23
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-influxdb/versions (cherry picked from commit b20f2d007947988b57c0164f774fbd4f58f0d78e)
30 lines
561 B
Nix
30 lines
561 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, requests
|
|
, dateutil
|
|
, pytz
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "influxdb";
|
|
version = "5.2.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0hriag4d4gx4bsqisiz29478sj54b215p6xzmshlw6x9af4z5vxg";
|
|
};
|
|
|
|
# ImportError: No module named tests
|
|
doCheck = false;
|
|
propagatedBuildInputs = [ requests dateutil pytz six ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python client for InfluxDB";
|
|
homepage = https://github.com/influxdb/influxdb-python;
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|