32 lines
783 B
Nix
32 lines
783 B
Nix
|
{ lib, buildPythonPackage, fetchFromGitHub, glfw3 }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "glfw";
|
||
|
version = "2.2.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "FlorianRhiem";
|
||
|
repo = "pyGLFW";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1ygcwnh0x07yi87wkxykw566g74vfi8n0w2rzypidhdss14x3pvf";
|
||
|
};
|
||
|
|
||
|
# Patch path to GLFW shared object
|
||
|
patches = [ ./search-path.patch ];
|
||
|
postPatch = ''
|
||
|
substituteInPlace glfw/library.py --replace "@GLFW@" '${glfw3}/lib'
|
||
|
'';
|
||
|
propagatedBuildInputs = [ glfw3 ];
|
||
|
|
||
|
# Project has no tests
|
||
|
doCheck = false;
|
||
|
pythonImportsCheck = [ "glfw" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python bindings for GLFW";
|
||
|
homepage = "https://github.com/FlorianRhiem/pyGLFW";
|
||
|
license = licenses.mit;
|
||
|
maintainers = [ maintainers.McSinyx ];
|
||
|
};
|
||
|
}
|