python3.pkgs.matplotlib: add missing build dependencies (#249459)

This commit is contained in:
Theodore Ni 2023-08-19 23:58:04 -07:00 committed by GitHub
parent 2b6299e904
commit 2aa7c01f0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
];