From b635355554a6344a1f88b22e8020e3a429966425 Mon Sep 17 00:00:00 2001 From: Justin Humm Date: Thu, 19 Jan 2017 02:52:42 +0000 Subject: [PATCH] python27Packages.influxdb: 0.1.12 -> 4.0.0 Updated, as the old package is not compatible with current InfluxDB versions. Changed buildInputs as following: * requests -> requests2 as it is newer * added dateutil as it is needed * added tytz as it is needed * added six as it is needed --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2f59ae166395..8ba3632866d6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12888,16 +12888,16 @@ in { }; influxdb = buildPythonPackage rec { - name = "influxdb-0.1.12"; + name = "influxdb-4.0.0"; src = pkgs.fetchurl { url = "mirror://pypi/i/influxdb/${name}.tar.gz"; - sha256 = "6b5ea154454b86d14f2a3960d180e666ba9863da964032dacf2b50628e774a33"; + sha256 = "0injsml6zmb3hkgc03117fdlg573kbfgjbijpd5npf0vsy0xnpvz"; }; # ImportError: No module named tests doCheck = false; - propagatedBuildInputs = with self; [ requests ]; + propagatedBuildInputs = with self; [ requests2 dateutil pytz six ]; meta = { description = "Python client for InfluxDB";