1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00

python-matplotlib: move dependencies like numpy into the propagatedBuildInputs

section to ensure that these libraries are being found at run-time by the
python wrapper.

svn path=/nixpkgs/trunk/; revision=29508
This commit is contained in:
Peter Simons 2011-09-27 14:00:31 +00:00
parent a3143f0bbd
commit 6bd8eea788

View file

@ -765,7 +765,7 @@ let pythonPackages = python.modules // rec {
doCheck = false;
buildInputs = [ dateutil numpy pkgs.freetype pkgs.libpng pkgs.pkgconfig pkgs.tcl pkgs.tk pkgs.xlibs.libX11 ];
propagatedBuildInputs = [ dateutil numpy pkgs.freetype pkgs.libpng pkgs.pkgconfig pkgs.tcl pkgs.tk pkgs.xlibs.libX11 ];
meta = {
description = "python plotting library, making publication quality plots";