From c9c027e4af1c4c29d8df712e48b336eb16ba7f9e Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Fri, 11 Aug 2023 23:02:55 -0700 Subject: python3.pkgs.pandas: add missing build dependencies (#248623) --- pkgs/development/python-modules/pandas/default.nix | 8 ++++---- 1 file 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 -- cgit 1.4.1