Merge pull request #143753 from r-ryantm/auto-update/python3.9-influxdb-client

This commit is contained in:
Martin Weinelt
2021-11-01 13:15:01 +01:00
committed by GitHub
2 changed files with 15 additions and 2 deletions
@@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "influxdb-client";
version = "1.21.0";
version = "1.23.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "influxdata";
repo = "influxdb-client-python";
rev = "v${version}";
sha256 = "081pwd3aa7kbgxqcl1hfi2ny4iapnxkcp9ypsfslr69d0khvfc4s";
sha256 = "0n8zflphcj9l17mkqa4acxb0sna0v05zq5y07ayizf84zm93hpbr";
};
propagatedBuildInputs = [
+13
View File
@@ -52,6 +52,19 @@ let
});
})
# Pinned due to API changes in influxdb-client>1.21.0
(self: super: {
influxdb-client = super.influxdb-client.overridePythonAttrs (oldAttrs: rec {
version = "1.21.0";
src = fetchFromGitHub {
owner = "influxdata";
repo = "influxdb-client-python";
rev = "v${version}";
sha256 = "081pwd3aa7kbgxqcl1hfi2ny4iapnxkcp9ypsfslr69d0khvfc4s";
};
});
})
# Pinned due to API changes in pyruckus>0.12
(self: super: {
pyruckus = super.pyruckus.overridePythonAttrs (oldAttrs: rec {