diff --git a/pkgs/development/python-modules/matplotlib/basedirlist.patch b/pkgs/development/python-modules/matplotlib/basedirlist.patch new file mode 100644 index 00000000000..0a84a05bbae --- /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 c60ee54bec8..bba201093a1 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