summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-11-23 22:20:27 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2021-11-24 09:54:17 +0100
commit6dc2edb831d1abd552cf6407509aae71bb060626 (patch)
tree5ba60318ee0ff622c6b87331ec07e7b96c4c6c95
parentd6d496e525de7d73c92e094bf426d9fee86c78ed (diff)
downloadnixpkgs-6dc2edb831d1abd552cf6407509aae71bb060626.tar
nixpkgs-6dc2edb831d1abd552cf6407509aae71bb060626.tar.gz
nixpkgs-6dc2edb831d1abd552cf6407509aae71bb060626.tar.bz2
nixpkgs-6dc2edb831d1abd552cf6407509aae71bb060626.tar.lz
nixpkgs-6dc2edb831d1abd552cf6407509aae71bb060626.tar.xz
nixpkgs-6dc2edb831d1abd552cf6407509aae71bb060626.tar.zst
nixpkgs-6dc2edb831d1abd552cf6407509aae71bb060626.zip
python3.pkgs.pandas: remove optional dependencies
-rw-r--r--pkgs/development/python-modules/pandas/default.nix21
1 files changed, 3 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix
index 6c258087774..917cb889578 100644
--- a/pkgs/development/python-modules/pandas/default.nix
+++ b/pkgs/development/python-modules/pandas/default.nix
@@ -3,15 +3,9 @@
 , buildPythonPackage
 , fetchPypi
 , python
-, beautifulsoup4
-, bottleneck
 , cython
+, numpy
 , python-dateutil
-, html5lib
-, jinja2
-, lxml
-, numexpr
-, openpyxl
 , pytz
 , scipy
 , sqlalchemy
@@ -21,6 +15,7 @@
 # Test inputs
 , glibcLocales
 , hypothesis
+, jinja2
 , pytestCheckHook
 , pytest-xdist
 , pytest-asyncio
@@ -44,19 +39,9 @@ buildPythonPackage rec {
   buildInputs = lib.optional stdenv.isDarwin libcxx;
 
   propagatedBuildInputs = [
-    beautifulsoup4
-    bottleneck
+    numpy
     python-dateutil
-    html5lib
-    numexpr
-    lxml
-    openpyxl
     pytz
-    scipy
-    sqlalchemy
-    tables
-    xlrd
-    xlwt
   ];
 
   checkInputs = [