nixpkgs/pkgs/development/python-modules/pyftgl/default.nix
2017-08-31 21:18:40 +07:00

21 lines
477 B
Nix

{ stdenv, buildPythonPackage, fetchFromGitHub
, boost, freetype, ftgl, mesa }:
buildPythonPackage rec {
name = "pyftgl-0.4b";
src = fetchFromGitHub {
owner = "umlaeute";
repo = "pyftgl";
rev = "0.4b";
sha256 = "12zcjv4cwwjihiaf74kslrdmmk4bs47h7006gyqfwdfchfjdgg4r";
};
buildInputs = [ boost freetype ftgl mesa ];
meta = with stdenv.lib; {
description = "Python bindings for FTGL (FreeType for OpenGL)";
license = licenses.gpl2Plus;
};
}