about summary refs log tree commit diff
path: root/pkgs/development/python-modules/elasticsearch-dsl
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-05-30 05:42:13 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-05-30 00:37:36 -0700
commit30d5e6068af96b31ca729d83f52c238f4082be1a (patch)
treeb193ce4a96c5dfa3f26a491396afb933b66a1cea /pkgs/development/python-modules/elasticsearch-dsl
parent049be08db3addfd5bdf7361e057b7198b0327e33 (diff)
python310Packages.elasticsearch-dsl: remove ipaddress dependency
Diffstat (limited to 'pkgs/development/python-modules/elasticsearch-dsl')
-rw-r--r--pkgs/development/python-modules/elasticsearch-dsl/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/elasticsearch-dsl/default.nix b/pkgs/development/python-modules/elasticsearch-dsl/default.nix
index 5f55a3ac4733f..2fe746ea7f389 100644
--- a/pkgs/development/python-modules/elasticsearch-dsl/default.nix
+++ b/pkgs/development/python-modules/elasticsearch-dsl/default.nix
@@ -1,9 +1,7 @@
 { lib
 , buildPythonPackage
 , fetchPypi
-, isPy3k
 , elasticsearch
-, ipaddress
 , python-dateutil
 , six
 }:
@@ -17,8 +15,7 @@ buildPythonPackage rec {
     sha256 = "c4a7b93882918a413b63bed54018a1685d7410ffd8facbc860ee7fd57f214a6d";
   };
 
-  propagatedBuildInputs = [ elasticsearch python-dateutil six ]
-                          ++ lib.optional (!isPy3k) ipaddress;
+  propagatedBuildInputs = [ elasticsearch python-dateutil six ];
 
   # ImportError: No module named test_elasticsearch_dsl
   # Tests require a local instance of elasticsearch