summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-21 23:38:57 +0000
committerOrivej Desh <orivej@gmx.fr>2017-12-21 23:43:32 +0000
commitf0c4bea507f5bd96e447d121b4eda1c7cfd26139 (patch)
treeac5d793c7dab2c7844ab028357de15b172bbd9db /pkgs
parentb513fc742038b50f348f30d6f833011630d20c04 (diff)
downloadnixlib-f0c4bea507f5bd96e447d121b4eda1c7cfd26139.tar
nixlib-f0c4bea507f5bd96e447d121b4eda1c7cfd26139.tar.gz
nixlib-f0c4bea507f5bd96e447d121b4eda1c7cfd26139.tar.bz2
nixlib-f0c4bea507f5bd96e447d121b4eda1c7cfd26139.tar.lz
nixlib-f0c4bea507f5bd96e447d121b4eda1c7cfd26139.tar.xz
nixlib-f0c4bea507f5bd96e447d121b4eda1c7cfd26139.tar.zst
nixlib-f0c4bea507f5bd96e447d121b4eda1c7cfd26139.zip
python.pkgs.pyelasticsearch: delete
because it requires python.pkgs.elasticsearch 1.x.y, which is compatible only
with the ancient Elasticsearch 1.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 2929145cf268..a13e291c6514 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -14328,26 +14328,6 @@ in {
     };
   };
 
-  pyelasticsearch = buildPythonPackage (rec {
-    name = "pyelasticsearch-1.4";
-
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/p/pyelasticsearch/${name}.tar.gz";
-      sha256 = "18wp6llfjv6hvyhr3f6i8dm9wc5rf46wiqsfxwpvnf6mdrvk6xr7";
-    };
-
-    # Tests require a local instance of elasticsearch
-    doCheck = false;
-    propagatedBuildInputs = with self; [ elasticsearch six simplejson certifi ];
-    buildInputs = with self; [ nose mock ];
-
-    meta = {
-      description = "A clean, future-proof, high-scale API to elasticsearch";
-      homepage = https://pyelasticsearch.readthedocs.org;
-      license = licenses.bsd3;
-    };
-  });
-
   pyelftools = buildPythonPackage rec {
     pname = "pyelftools";
     version = "0.24";