summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-11 23:02:55 -0700
committerGitHub <noreply@github.com>2023-08-12 08:02:55 +0200
commitc9c027e4af1c4c29d8df712e48b336eb16ba7f9e (patch)
treeb0f2ae25dd0983dd491297dc73bedf9898a2adbf
parentbb4eee2f74a61ba5ab7561994e21df590f24fe0a (diff)
downloadnixpkgs-c9c027e4af1c4c29d8df712e48b336eb16ba7f9e.tar
nixpkgs-c9c027e4af1c4c29d8df712e48b336eb16ba7f9e.tar.gz
nixpkgs-c9c027e4af1c4c29d8df712e48b336eb16ba7f9e.tar.bz2
nixpkgs-c9c027e4af1c4c29d8df712e48b336eb16ba7f9e.tar.lz
nixpkgs-c9c027e4af1c4c29d8df712e48b336eb16ba7f9e.tar.xz
nixpkgs-c9c027e4af1c4c29d8df712e48b336eb16ba7f9e.tar.zst
nixpkgs-c9c027e4af1c4c29d8df712e48b336eb16ba7f9e.zip
python3.pkgs.pandas: add missing build dependencies (#248623)
-rw-r--r--pkgs/development/python-modules/pandas/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix
index 0c3b28d1d21..d79b9eea4bc 100644
--- a/pkgs/development/python-modules/pandas/default.nix
+++ b/pkgs/development/python-modules/pandas/default.nix
@@ -6,8 +6,10 @@
 
 # build-system
 , cython
+, oldest-supported-numpy
 , setuptools
 , versioneer
+, wheel
 
 # propagates
 , numpy
@@ -75,7 +77,9 @@ buildPythonPackage rec {
     setuptools
     cython
     numpy
+    oldest-supported-numpy
     versioneer
+    wheel
   ] ++ versioneer.optional-dependencies.toml;
 
   enableParallelBuilding = true;
@@ -168,10 +172,6 @@ buildPythonPackage rec {
     all = lib.concatLists (lib.attrValues extras);
   };
 
-  # Doesn't work with -Werror,-Wunused-command-line-argument
-  # https://github.com/NixOS/nixpkgs/issues/39687
-  hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
-
   nativeCheckInputs = [
     glibcLocales
     hypothesis