matplotlib: add optional gtk3 backend, fixes #4500
This commit is contained in:
parent
0c27d37495
commit
0f82c6bdb2
@ -1,8 +1,9 @@
|
|||||||
{ stdenv, fetchurl, python, buildPythonPackage
|
{ stdenv, fetchurl, python, buildPythonPackage, pycairo
|
||||||
, which, dateutil, nose, numpy, pyparsing, tornado
|
, which, dateutil, nose, numpy, pyparsing, tornado
|
||||||
, freetype, libpng, pkgconfig, mock, pytz
|
, freetype, libpng, pkgconfig, mock, pytz, pygobject3
|
||||||
, enableGhostscript ? false, ghostscript ? null
|
, enableGhostscript ? false, ghostscript ? null, gtk3
|
||||||
, enableGtk2 ? false, pygtk ? null
|
, enableGtk2 ? false, pygtk ? null, gobjectIntrospection
|
||||||
|
, enableGtk3 ? true, cairo
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert enableGhostscript -> ghostscript != null;
|
assert enableGhostscript -> ghostscript != null;
|
||||||
@ -16,6 +17,8 @@ buildPythonPackage rec {
|
|||||||
sha256 = "0m6v9nwdldlwk22gcd339zg6mny5m301fxgks7z8sb8m9wawg8qp";
|
sha256 = "0m6v9nwdldlwk22gcd339zg6mny5m301fxgks7z8sb8m9wawg8qp";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
XDG_RUNTIME_DIR = "/tmp";
|
||||||
|
|
||||||
buildInputs = [ python which stdenv ]
|
buildInputs = [ python which stdenv ]
|
||||||
++ stdenv.lib.optional enableGhostscript ghostscript;
|
++ stdenv.lib.optional enableGhostscript ghostscript;
|
||||||
|
|
||||||
@ -23,7 +26,8 @@ buildPythonPackage rec {
|
|||||||
[ dateutil nose numpy pyparsing tornado freetype
|
[ dateutil nose numpy pyparsing tornado freetype
|
||||||
libpng pkgconfig mock pytz
|
libpng pkgconfig mock pytz
|
||||||
]
|
]
|
||||||
++ stdenv.lib.optional enableGtk2 pygtk;
|
++ stdenv.lib.optional enableGtk2 pygtk
|
||||||
|
++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobjectIntrospection pygobject3 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "python plotting library, making publication quality plots";
|
description = "python plotting library, making publication quality plots";
|
||||||
|
Loading…
Reference in New Issue
Block a user