From 2aa7c01f0ab76eb6d40a384f649b75d7a4cc098d Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sat, 19 Aug 2023 23:58:04 -0700 Subject: [PATCH] python3.pkgs.matplotlib: add missing build dependencies (#249459) --- pkgs/development/python-modules/matplotlib/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index 2cfd5d21db19..e5df4ea7d4ea 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -8,10 +8,13 @@ # https://github.com/matplotlib/matplotlib/blob/main/doc/devel/dependencies.rst # build-system +, certifi +, oldest-supported-numpy , pkg-config , pybind11 , setuptools , setuptools-scm +, wheel # native libraries , ffmpeg-headless @@ -116,11 +119,14 @@ buildPythonPackage rec { ''; nativeBuildInputs = [ + certifi + numpy + oldest-supported-numpy # TODO remove after updating to 3.8.0 pkg-config pybind11 setuptools setuptools-scm - numpy + wheel ] ++ lib.optionals enableGtk3 [ gobject-introspection ];