2015-01-17 14:11:24 +00:00
|
|
|
{ stdenv, fetchurl, python, buildPythonPackage, pycairo
|
2015-10-30 08:12:15 +00:00
|
|
|
, which, cycler, dateutil, nose, numpy, pyparsing, sphinx, tornado
|
2015-01-17 14:11:24 +00:00
|
|
|
, freetype, libpng, pkgconfig, mock, pytz, pygobject3
|
|
|
|
, enableGhostscript ? false, ghostscript ? null, gtk3
|
|
|
|
, enableGtk2 ? false, pygtk ? null, gobjectIntrospection
|
2015-01-17 14:24:47 +00:00
|
|
|
, enableGtk3 ? false, cairo
|
2015-06-28 19:25:19 +01:00
|
|
|
, Cocoa, Foundation, CoreData, cf-private, libobjc, libcxx
|
2014-12-22 20:38:05 +00:00
|
|
|
}:
|
2014-12-21 10:02:35 +00:00
|
|
|
|
|
|
|
assert enableGhostscript -> ghostscript != null;
|
|
|
|
assert enableGtk2 -> pygtk != null;
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2015-10-30 08:12:15 +00:00
|
|
|
name = "matplotlib-${version}";
|
2016-02-17 20:02:15 +00:00
|
|
|
version = "1.5.1";
|
2014-12-21 10:02:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-10-30 08:12:15 +00:00
|
|
|
url = "https://pypi.python.org/packages/source/m/matplotlib/${name}.tar.gz";
|
2016-02-17 20:02:15 +00:00
|
|
|
sha256 = "3ab8d968eac602145642d0db63dd8d67c85e9a5444ce0e2ecb2a8fedc7224d40";
|
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
|
|
|
|
2015-10-30 08:12:15 +00:00
|
|
|
buildInputs = [ python which sphinx stdenv ]
|
2015-06-28 19:25:19 +01:00
|
|
|
++ stdenv.lib.optional enableGhostscript ghostscript
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa Foundation CoreData
|
|
|
|
cf-private libobjc ];
|
2014-12-21 10:02:35 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs =
|
2015-10-30 08:12:15 +00:00
|
|
|
[ cycler dateutil nose numpy pyparsing tornado freetype
|
2015-01-17 14:11:24 +00:00
|
|
|
libpng pkgconfig mock pytz
|
2014-12-21 10:02:35 +00:00
|
|
|
]
|
2015-01-17 14:11:24 +00:00
|
|
|
++ stdenv.lib.optional enableGtk2 pygtk
|
|
|
|
++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobjectIntrospection pygobject3 ];
|
2014-12-21 10:02:35 +00:00
|
|
|
|
2015-06-28 19:25:19 +01:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./darwin-stdenv.patch ];
|
|
|
|
|
2016-02-17 20:02:15 +00:00
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} tests.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
# The entry point for running tests, tests.py, is not included in the release.
|
|
|
|
# https://github.com/matplotlib/matplotlib/issues/6017
|
|
|
|
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; {
|
|
|
|
description = "python plotting library, making publication quality plots";
|
|
|
|
homepage = "http://matplotlib.sourceforge.net/";
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2016-02-17 20:02:15 +00:00
|
|
|
|
2014-12-21 10:02:35 +00:00
|
|
|
}
|