3
0
Fork 0
forked from mirrors/nixpkgs

python.pkgs.pyglet: fix build

This commit is contained in:
Frederik Rietdijk 2017-12-31 11:11:32 +01:00
parent 6665872f0a
commit 6c86adff20

View file

@ -1,23 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi
, mesa, xorg, freetype, fontconfig}:
, mesa, xorg, freetype, fontconfig, future}:
buildPythonPackage rec {
version = "1.3.0";
pname = "pyglet";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "640a8f8e3d7bf8dbb551fa707f14021f619932990ab1401c48ba9dbcc6c2242c";
};
patchPhase = let
postPatch = let
libs = [ mesa xorg.libX11 freetype fontconfig ];
paths = builtins.concatStringsSep "," (map (l: "\"${l}/lib\"") libs);
in "sed -i -e 's|directories\.extend.*lib[^]]*|&,${paths}|' pyglet/lib.py";
doCheck = false;
propagatedBuildInputs = [ future ];
meta = with stdenv.lib; {
homepage = "http://www.pyglet.org/";
description = "A cross-platform windowing and multimedia library";