Merge pull request #191950 from McSinyx/moderngl-context

python3Packages.moderngl: propagate build input glcontext
This commit is contained in:
Fabian Affolter 2022-09-21 10:43:51 +02:00 committed by GitHub
commit c6475fc5db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,8 @@ buildPythonPackage rec {
disabled = !isPy3k;
buildInputs = [ libGL libX11 glcontext ];
buildInputs = [ libGL libX11 ];
propagatedBuildInputs = [ glcontext ];
# Tests need a display to run.
doCheck = false;