mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
30 lines
563 B
Nix
30 lines
563 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, requests
|
|
, dateutil
|
|
, pytz
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "influxdb";
|
|
version = "5.2.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0dlddhbmd37qsdfyqn9w3xx4v07hladj6fvk9i15jxmz0iz6q9rh";
|
|
};
|
|
|
|
# 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;
|
|
};
|
|
|
|
}
|