about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authordesiderius <didier@devroye.name>2015-12-01 09:33:50 +0100
committerdesiderius <didier@devroye.name>2015-12-01 09:42:07 +0100
commit12b670178c3499657103f932cdc26cf46da7170e (patch)
tree36d05b650fe099a209fb3ead1bba9e899ebdea19 /pkgs
parent4f4d1fdd33938d1b03b2f68ecfe96543f37c37a5 (diff)
downloadnixlib-12b670178c3499657103f932cdc26cf46da7170e.tar
nixlib-12b670178c3499657103f932cdc26cf46da7170e.tar.gz
nixlib-12b670178c3499657103f932cdc26cf46da7170e.tar.bz2
nixlib-12b670178c3499657103f932cdc26cf46da7170e.tar.lz
nixlib-12b670178c3499657103f932cdc26cf46da7170e.tar.xz
nixlib-12b670178c3499657103f932cdc26cf46da7170e.tar.zst
nixlib-12b670178c3499657103f932cdc26cf46da7170e.zip
pythonPackages.elasticsearch: remove dependencies
Remove the pyyaml and pyaml dependencies. They are only used in
the unit tests and pyaml is marked as Python 2 only.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index b41a391cce23..abcbc170dffa 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -4014,7 +4014,7 @@ in modules // {
     # Check is disabled because running them destroy the content of the local cluster!
     # https://github.com/elasticsearch/elasticsearch-py/tree/master/test_elasticsearch
     doCheck = false;
-    propagatedBuildInputs = with self; [ urllib3 pyaml requests2 pyyaml ];
+    propagatedBuildInputs = with self; [ urllib3 requests2 ];
     buildInputs = with self; [ nosexcover mock ];
 
     meta = {