2015-01-17 14:11:24 +00:00
|
|
|
{ stdenv, fetchurl, python, buildPythonPackage, pycairo
|
2014-12-21 10:02:35 +00:00
|
|
|
, which, dateutil, nose, numpy, pyparsing, 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
|
|
|
|
, enableGtk3 ? true, cairo
|
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 {
|
|
|
|
name = "matplotlib-1.4.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/matplotlib/${name}.tar.gz";
|
|
|
|
sha256 = "0m6v9nwdldlwk22gcd339zg6mny5m301fxgks7z8sb8m9wawg8qp";
|
|
|
|
};
|
2015-01-17 14:11:24 +00:00
|
|
|
|
|
|
|
XDG_RUNTIME_DIR = "/tmp";
|
2014-12-21 10:02:35 +00:00
|
|
|
|
|
|
|
buildInputs = [ python which stdenv ]
|
2014-12-22 20:38:05 +00:00
|
|
|
++ stdenv.lib.optional enableGhostscript ghostscript;
|
2014-12-21 10:02:35 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs =
|
2015-01-17 14:11:24 +00:00
|
|
|
[ dateutil nose numpy pyparsing tornado freetype
|
|
|
|
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
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "python plotting library, making publication quality plots";
|
|
|
|
homepage = "http://matplotlib.sourceforge.net/";
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|