Files
nixpkgs/pkgs/development/python-modules/matplotlib/default.nix
T

93 lines
3.3 KiB
Nix
Raw Normal View History

2018-11-03 13:40:48 +01:00
{ stdenv, fetchPypi, python, buildPythonPackage, isPy3k, pycairo, backports_functools_lru_cache
2018-04-04 20:11:14 +02:00
, which, cycler, dateutil, nose, numpy, pyparsing, sphinx, tornado, kiwisolver
2017-01-20 12:55:45 +01:00
, freetype, libpng, pkgconfig, mock, pytz, pygobject3, functools32, subprocess32
2018-11-03 13:40:48 +01:00
, enableGhostscript ? true, ghostscript ? null, gtk3
2018-12-02 12:41:15 +01:00
, enableGtk2 ? false, pygtk ? null, gobject-introspection
2015-01-17 15:24:47 +01:00
, enableGtk3 ? false, cairo
, enableTk ? false, tcl ? null, tk ? null, tkinter ? null, libX11 ? null
2017-01-20 12:55:45 +01:00
, enableQt ? false, pyqt4
, libcxx
, Cocoa
, pythonOlder
2014-12-22 21:38:05 +01:00
}:
2014-12-21 11:02:35 +01:00
assert enableGhostscript -> ghostscript != null;
assert enableGtk2 -> pygtk != null;
assert enableTk -> (tcl != null)
&& (tk != null)
&& (tkinter != null)
&& (libX11 != null)
;
2017-01-20 12:55:45 +01:00
assert enableQt -> pyqt4 != null;
2014-12-21 11:02:35 +01:00
buildPythonPackage rec {
2018-11-03 13:40:48 +01:00
version = "3.0.2";
2017-05-27 11:25:35 +02:00
pname = "matplotlib";
2014-12-21 11:02:35 +01:00
2018-11-03 13:40:48 +01:00
disabled = !isPy3k;
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2018-11-03 13:40:48 +01:00
sha256 = "c94b792af431f6adb6859eb218137acd9a35f4f7442cea57e4a59c54751c36af";
2014-12-21 11:02:35 +01:00
};
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
XDG_RUNTIME_DIR = "/tmp";
2014-12-21 11:02:35 +01:00
2015-10-30 09:12:15 +01:00
buildInputs = [ python which sphinx stdenv ]
++ stdenv.lib.optional enableGhostscript ghostscript
++ stdenv.lib.optional stdenv.isDarwin [ Cocoa ];
2014-12-21 11:02:35 +01:00
propagatedBuildInputs =
2018-04-04 20:11:14 +02:00
[ cycler dateutil nose numpy pyparsing tornado freetype kiwisolver
libpng pkgconfig mock pytz ]
++ stdenv.lib.optional (pythonOlder "3.3") backports_functools_lru_cache
++ stdenv.lib.optional enableGtk2 pygtk
2018-12-02 12:41:15 +01:00
++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ]
2017-01-20 12:55:45 +01:00
++ stdenv.lib.optionals enableTk [ tcl tk tkinter libX11 ]
2018-11-03 13:40:48 +01:00
++ stdenv.lib.optionals enableQt [ pyqt4 ];
2014-12-21 11:02:35 +01:00
2016-06-24 11:50:06 +02:00
patches =
[ ./basedirlist.patch ] ++
stdenv.lib.optionals stdenv.isDarwin [ ./darwin-stdenv.patch ];
# 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";
2016-02-17 21:02:15 +01:00
checkPhase = ''
${python.interpreter} tests.py
'';
2017-01-20 12:55:45 +01:00
# Test data is not included in the distribution (the `tests` folder
# is missing)
2016-02-17 21:02:15 +01:00
doCheck = false;
prePatch = ''
2015-10-30 09:12:15 +01: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 16:27:00 +01:00
# Transient errors
sed -i 's/test_invisible_Line_rendering/noop/' lib/matplotlib/tests/test_lines.py
2015-10-30 09:12:15 +01:00
'';
2014-12-21 11:02:35 +01:00
meta = with stdenv.lib; {
2016-06-20 12:53:46 +02:00
description = "Python plotting library, making publication quality plots";
2018-11-03 13:40:48 +01:00
homepage = "https://matplotlib.org/";
2014-12-21 11:02:35 +01:00
maintainers = with maintainers; [ lovek323 ];
};
2016-02-17 21:02:15 +01:00
2014-12-21 11:02:35 +01:00
}