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-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 {
|
2020-04-21 06:56:13 +01:00
|
|
|
version = "3.2.1";
|
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;
|
2020-04-21 06:56:13 +01:00
|
|
|
sha256 = "ffe2f9cdcea1086fc414e82f42271ecf1976700b8edd16ca9d376189c6d93aee";
|
2014-12-21 10:02:35 +00:00
|
|
|
};
|
2015-06-28 19:25:19 +01:00
|
|
|
|
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 ];
|
|
|
|
|
2020-04-21 06:56:13 +01:00
|
|
|
buildInputs = [ which sphinx ]
|
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 =
|
2020-03-25 19:32:22 +00:00
|
|
|
[ cycler dateutil numpy pyparsing tornado freetype kiwisolver
|
2019-01-18 00:20:41 +00:00
|
|
|
libpng mock pytz ]
|
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
|
|
|
|
2020-04-21 06:56:13 +01:00
|
|
|
setup_cfg = ./setup.cfg;
|
|
|
|
preBuild = ''
|
|
|
|
cp "$setup_cfg" ./setup.cfg
|
|
|
|
'';
|
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
|
|
|
|
2020-04-21 06:56:13 +01:00
|
|
|
# Matplotlib needs to be built against a specific version of freetype in
|
|
|
|
# order for all of the tests to pass.
|
2016-02-17 20:02:15 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
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/";
|
2020-04-21 06:56:13 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 veprbl ];
|
2014-12-21 10:02:35 +00:00
|
|
|
};
|
2016-02-17 20:02:15 +00:00
|
|
|
|
2014-12-21 10:02:35 +00:00
|
|
|
}
|