Files
nixpkgs/pkgs/development/python-modules/moderngl-window/default.nix
T
Alyssa Ross d4a72a3935 lib.platforms.mesaPlatforms: remove
Mesa is a package like any other.  There's no reason for it to be a
special case with its platforms listed in lib, because if other
packages want to refer to mesa's platforms, they can access the
platforms from the package meta like they would for any other package.
2024-08-31 10:28:31 +02:00

78 lines
1.4 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
glfw,
mesa,
moderngl,
numpy,
pillow,
pygame,
pyglet,
pyqt5,
pyrr,
pysdl2,
pyside2,
pythonOlder,
scipy,
trimesh,
}:
buildPythonPackage rec {
pname = "moderngl-window";
version = "2.4.6";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "moderngl";
repo = "moderngl_window";
rev = "refs/tags/${version}";
hash = "sha256-zTygSXU/vQZaFCuHbRBpO9/BYYA2UOid+wvhyc2bWMI=";
};
pythonRelaxDeps = [ "pillow" ];
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
numpy
moderngl
pyglet
pillow
pyrr
];
passthru.optional-dependencies = {
trimesh = [
trimesh
scipy
];
glfw = [ glfw ];
pygame = [ pygame ];
PySDL2 = [ pysdl2 ];
PySide2 = [ pyside2 ];
pyqt5 = [ pyqt5 ];
};
# Tests need a display to run.
doCheck = false;
pythonImportsCheck = [ "moderngl_window" ];
meta = with lib; {
description = "Cross platform helper library for ModernGL making window creation and resource loading simple";
homepage = "https://github.com/moderngl/moderngl-window";
changelog = "https://github.com/moderngl/moderngl-window/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ c0deaddict ];
inherit (mesa.meta) platforms;
broken = stdenv.isDarwin;
};
}