Martin Weinelt 5208f488d1
python3Packages.pyopengl-accelerate: 3.1.7 -> 3.1.9
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:54 +02:00

40 lines
816 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
cython,
numpy,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "pyopengl-accelerate";
version = "3.1.9";
format = "pyproject";
src = fetchPypi {
pname = "pyopengl_accelerate";
inherit version;
hash = "sha256-hZV8fHaXWBj/dZ7JJD+dxwke9vNz6jei61DDIP2ahvM=";
};
build-system = [
cython
numpy
setuptools
wheel
];
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-error=int-conversion"
"-Wno-error=incompatible-pointer-types"
];
meta = {
description = "This set of C (Cython) extensions provides acceleration of common operations for slow points in PyOpenGL 3.x";
homepage = "https://pyopengl.sourceforge.net/";
maintainers = with lib.maintainers; [ laikq ];
license = lib.licenses.bsd3;
};
}