about summary refs log tree commit diff
path: root/pkgs/development/python-modules/elasticsearch
diff options
context:
space:
mode:
authortalyz <kim.lindberger@gmail.com>2021-09-09 12:30:41 +0200
committertalyz <kim.lindberger@gmail.com>2021-09-10 19:03:48 +0200
commit001598d43431dd79c235b4f65dfdc971e38030ac (patch)
tree772793594e7ed7b357bcc90be5e1a5df033619c0 /pkgs/development/python-modules/elasticsearch
parent6511f4cb3e3222ba6a9b7cb0ae03d66b28465102 (diff)
python38Packages.elasticsearch: Revert updates >7.13.1
In 7.14.0, the package was intentionally made incompatible with the
OSS version, see
https://github.com/elastic/elasticsearch-py/issues/1639 for more info.

This reverts commit dcd65ace3c6cbb48511ebc25de5df31cb8483b6a.
This reverts commit 81171e61ac152167344258192208591ec75dec42.
Diffstat (limited to 'pkgs/development/python-modules/elasticsearch')
-rw-r--r--pkgs/development/python-modules/elasticsearch/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/elasticsearch/default.nix b/pkgs/development/python-modules/elasticsearch/default.nix
index 17cf944bf14b3..442ac5904b2f5 100644
--- a/pkgs/development/python-modules/elasticsearch/default.nix
+++ b/pkgs/development/python-modules/elasticsearch/default.nix
@@ -7,11 +7,16 @@
 
 buildPythonPackage (rec {
   pname = "elasticsearch";
-  version = "7.14.1";
+  # In 7.14.0, the package was intentionally made incompatible with
+  # the OSS version of elasticsearch - don't update past 7.13.x until
+  # there's a clear path forward. See
+  # https://github.com/elastic/elasticsearch-py/issues/1639 for more
+  # info.
+  version = "7.13.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "f928898fe06869516f2603f9a96a6f166c06888233806b31ac6568bac0266501";
+    sha256 = "d6bcca0b2e5665d08e6fe6fadc2d4d321affd76ce483603078fc9d3ccd2bc0f9";
   };
 
   # Check is disabled because running them destroy the content of the local cluster!