2018-11-03 12:40:48 +00:00
|
|
|
{ stdenv, fetchPypi, python, buildPythonPackage, isPy3k, pycairo, backports_functools_lru_cache
|
2018-04-04 19:11:14 +01:00
|
|
|
, which, cycler, dateutil, nose, numpy, pyparsing, sphinx, tornado, kiwisolver
|
2019-11-27 18:37:34 +00:00
|
|
|
, freetype, libpng, pkgconfig, mock, pytz, pygobject3, gobject-introspection
|
2018-11-03 12:40:48 +00:00
|
|
|
, enableGhostscript ? true, ghostscript ? null, gtk3
|
2015-01-17 14:24:47 +00:00
|
|
|
, enableGtk3 ? false, cairo
|
2018-12-01 21:06:23 +00:00
|
|
|
# darwin has its own "MacOSX" backend
|
|
|
|
, enableTk ? !stdenv.isDarwin, tcl ? null, tk ? null, tkinter ? null, libX11 ? null
|
2019-10-20 00:23:54 +01:00
|
|
|
, enableQt ? false, pyqt5 ? null
|
2017-01-20 11:55:45 +00:00
|
|
|
, libcxx
|
2017-02-13 14:03:59 +00:00
|
|
|
, Cocoa
|
2018-01-24 13:00:57 +00:00
|
|
|
, pythonOlder
|
2014-12-22 20:38:05 +00:00
|
|
|
}:
|
2014-12-21 10:02:35 +00:00
|
|
|
|
|
|
|
assert enableGhostscript -> ghostscript != null;
|
2016-06-05 12:09:55 +01:00
|
|
|
assert enableTk -> (tcl != null)
|
|
|
|
&& (tk != null)
|
|
|
|
&& (tkinter != null)
|
|
|
|
&& (libX11 != null)
|
|
|
|
;
|
2019-10-20 00:23:54 +01:00
|
|
|
assert enableQt -> pyqt5 != null;
|
2014-12-21 10:02:35 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-12-10 18:07:40 +00:00
|
|
|
version = "3.1.2";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "matplotlib";
|
2014-12-21 10:02:35 +00:00
|
|
|
|
2018-11-03 12:40:48 +00:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-10 18:07:40 +00:00
|
|
|
sha256 = "8e8e2c2fe3d873108735c6ee9884e6f36f467df4a143136209cff303b183bada";
|
2014-12-21 10:02:35 +00:00
|
|
|
};
|
2015-06-28 19:25:19 +01:00
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
|
|
|
|
2015-01-17 14:11:24 +00:00
|
|
|
XDG_RUNTIME_DIR = "/tmp";
|
2014-12-21 10:02:35 +00:00
|
|
|
|
2019-01-18 00:20:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2015-10-30 08:12:15 +00:00
|
|
|
buildInputs = [ python which sphinx stdenv ]
|
2017-02-13 14:03:59 +00:00
|
|
|
++ stdenv.lib.optional enableGhostscript ghostscript
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin [ Cocoa ];
|
2014-12-21 10:02:35 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs =
|
2018-04-04 19:11:14 +01:00
|
|
|
[ cycler dateutil nose numpy pyparsing tornado freetype kiwisolver
|
2019-01-18 00:20:41 +00:00
|
|
|
libpng mock pytz ]
|
2018-01-24 13:00:57 +00:00
|
|
|
++ stdenv.lib.optional (pythonOlder "3.3") backports_functools_lru_cache
|
2018-12-02 11:41:15 +00:00
|
|
|
++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ]
|
2017-01-20 11:55:45 +00:00
|
|
|
++ stdenv.lib.optionals enableTk [ tcl tk tkinter libX11 ]
|
2019-10-20 00:23:54 +01:00
|
|
|
++ stdenv.lib.optionals enableQt [ pyqt5 ];
|
2014-12-21 10:02:35 +00:00
|
|
|
|
2016-06-24 10:50:06 +01:00
|
|
|
patches =
|
2019-02-09 19:00:48 +00:00
|
|
|
[ ./basedirlist.patch ];
|
2015-06-28 19:25:19 +01:00
|
|
|
|
2016-06-05 12:09:55 +01:00
|
|
|
# Matplotlib tries to find Tcl/Tk by opening a Tk window and asking the
|
|
|
|
# corresponding interpreter object for its library paths. This fails if
|
|
|
|
# `$DISPLAY` is not set. The fallback option assumes that Tcl/Tk are both
|
|
|
|
# installed under the same path which is not true in Nix.
|
|
|
|
# With the following patch we just hard-code these paths into the install
|
|
|
|
# script.
|
|
|
|
postPatch =
|
|
|
|
let
|
|
|
|
inherit (stdenv.lib.strings) substring;
|
|
|
|
tcl_tk_cache = ''"${tk}/lib", "${tcl}/lib", "${substring 0 3 tk.version}"'';
|
|
|
|
in
|
|
|
|
stdenv.lib.optionalString enableTk
|
|
|
|
"sed -i '/self.tcl_tk_cache = None/s|None|${tcl_tk_cache}|' setupext.py";
|
2015-06-28 19:25:19 +01:00
|
|
|
|
2016-02-17 20:02:15 +00:00
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} tests.py
|
|
|
|
'';
|
|
|
|
|
2017-01-20 11:55:45 +00:00
|
|
|
# Test data is not included in the distribution (the `tests` folder
|
|
|
|
# is missing)
|
2016-02-17 20:02:15 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2015-11-01 12:55:06 +00:00
|
|
|
prePatch = ''
|
2015-10-30 08:12:15 +00:00
|
|
|
# Failing test: ERROR: matplotlib.tests.test_style.test_use_url
|
|
|
|
sed -i 's/test_use_url/fails/' lib/matplotlib/tests/test_style.py
|
|
|
|
# Failing test: ERROR: test suite for <class 'matplotlib.sphinxext.tests.test_tinypages.TestTinyPages'>
|
|
|
|
sed -i 's/TestTinyPages/fails/' lib/matplotlib/sphinxext/tests/test_tinypages.py
|
2015-11-19 15:27:00 +00:00
|
|
|
# Transient errors
|
|
|
|
sed -i 's/test_invisible_Line_rendering/noop/' lib/matplotlib/tests/test_lines.py
|
2015-10-30 08:12:15 +00:00
|
|
|
'';
|
|
|
|
|
2014-12-21 10:02:35 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Python plotting library, making publication quality plots";
|
2018-11-03 12:40:48 +00:00
|
|
|
homepage = "https://matplotlib.org/";
|
2014-12-21 10:02:35 +00:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
};
|
2016-02-17 20:02:15 +00:00
|
|
|
|
2014-12-21 10:02:35 +00:00
|
|
|
}
|