This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #461 from BlueBrain/pylab-bgq-steps
Update STEPS build recipe fir BGQ and add all necessary components fo…
- Loading branch information
Showing
5 changed files
with
66 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ stdenv, fetchurl, python, buildPythonPackage, pycairo | ||
, which, dateutil, nose, numpy, pyparsing, tornado | ||
, freetype, libpng, pkgconfig, mock, pytz, pygobject3 | ||
, enableGhostscript ? false, ghostscript ? null, gtk3 | ||
, enableGtk2 ? false, pygtk ? null, gobjectIntrospection | ||
, enableGtk3 ? false, cairo | ||
}: | ||
|
||
assert enableGhostscript -> ghostscript != null; | ||
assert enableGtk2 -> pygtk != null; | ||
|
||
buildPythonPackage rec { | ||
name = "matplotlib-1.4.3"; | ||
|
||
src = fetchurl { | ||
url = "mirror://sourceforge/matplotlib/${name}.tar.gz"; | ||
sha256 = "1dn05cvd0g984lzhh72wa0z93psgwshbbg93fkab6slx5m3l95av"; | ||
}; | ||
|
||
XDG_RUNTIME_DIR = "/tmp"; | ||
|
||
buildInputs = [ python ] | ||
++ stdenv.lib.optional enableGhostscript ghostscript; | ||
|
||
propagatedBuildInputs = | ||
[ dateutil nose numpy pyparsing tornado freetype | ||
libpng mock pytz | ||
] | ||
++ stdenv.lib.optional enableGtk2 pygtk | ||
++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobjectIntrospection pygobject3 ]; | ||
|
||
propagatedNativeBuildInputs = [ pkgconfig which ]; | ||
|
||
meta = with stdenv.lib; { | ||
description = "python plotting library, making publication quality plots"; | ||
homepage = "http://matplotlib.sourceforge.net/"; | ||
maintainers = with maintainers; [ lovek323 ]; | ||
platforms = platforms.unix; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters