From 616f84689437b06d78fadd82e3b3ccf01e9ec7f7 Mon Sep 17 00:00:00 2001 From: Andreas Herrmann Date: Fri, 24 Jun 2016 11:50:06 +0200 Subject: [PATCH] matplotlib: Don't search in global paths Sets the `basedirlist` option in setup.cfg such that distutils does not search for headers and libraries in `/usr`, and `/usr/local`. Otherwise the build can fail on non-NixOS machines, see #15993. --- .../python-modules/matplotlib/basedirlist.patch | 8 ++++++++ pkgs/development/python-modules/matplotlib/default.nix | 4 +++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/python-modules/matplotlib/basedirlist.patch diff --git a/pkgs/development/python-modules/matplotlib/basedirlist.patch b/pkgs/development/python-modules/matplotlib/basedirlist.patch new file mode 100644 index 000000000000..0a84a05bbaea --- /dev/null +++ b/pkgs/development/python-modules/matplotlib/basedirlist.patch @@ -0,0 +1,8 @@ +diff --git a/setup.cfg b/setup.cfg +new file mode 100644 +index 0000000..6f81985 +--- /dev/null ++++ b/setup.cfg +@@ -0,0 +1,2 @@ ++[directories] ++basedirlist = . diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index c60ee54bec8e..bba201093a17 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -35,7 +35,9 @@ buildPythonPackage rec { ++ stdenv.lib.optional enableGtk2 pygtk ++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobjectIntrospection pygobject3 ]; - patches = stdenv.lib.optionals stdenv.isDarwin [ ./darwin-stdenv.patch ]; + patches = + [ ./basedirlist.patch ] ++ + stdenv.lib.optionals stdenv.isDarwin [ ./darwin-stdenv.patch ]; checkPhase = '' ${python.interpreter} tests.py