nixpkgs-suyu/pkgs/development/python-modules/glfw/default.nix
2024-02-24 23:06:23 +00:00

45 lines
959 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, glfw3
, pythonOlder
}:
buildPythonPackage rec {
pname = "glfw";
version = "2.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "FlorianRhiem";
repo = "pyGLFW";
rev = "refs/tags/v${version}";
hash = "sha256-9SNq8jKzgzFzonyMYoyjGbz4NDL83dPKWID9m3HZ7B8=";
};
# Patch path to GLFW shared object
postPatch = ''
substituteInPlace glfw/library.py --replace "_get_library_search_paths()," "[ '${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";
changelog = "https://github.com/FlorianRhiem/pyGLFW/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ maintainers.McSinyx ];
};
}