PyOpenGL: Propagate build inputs that need it.

svn path=/nixpkgs/trunk/; revision=12609
This commit is contained in:
Ludovic Courtès 2008-08-13 09:10:11 +00:00
parent e35ac23ac8
commit 25e77977b9

View File

@ -11,7 +11,8 @@ in
};
# Note: We need `ctypes', available in Python 2.5+.
buildInputs = [ python setuptools mesa freeglut pil ];
buildInputs = [ python ];
propagatedBuildInputs = [ setuptools mesa freeglut pil ];
configurePhase = "ensureDir $out/lib/python2.5/site-packages";
buildPhase = "python setup.py build";