2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
pythonAtLeast,
|
|
|
|
fetchPypi,
|
|
|
|
cython,
|
|
|
|
numpy,
|
|
|
|
setuptools,
|
|
|
|
wheel,
|
2020-09-25 04:45:31 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyopengl-accelerate";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "3.1.7";
|
2023-10-09 19:29:22 +00:00
|
|
|
format = "pyproject";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "PyOpenGL-accelerate";
|
|
|
|
inherit version;
|
2023-07-15 17:15:38 +00:00
|
|
|
hash = "sha256-KxI2ISc6k59/0uwidUHjmfm11OgV1prgvbG2xwopNoA=";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
nativeBuildInputs = [
|
2024-04-21 15:54:59 +00:00
|
|
|
cython
|
2023-10-09 19:29:22 +00:00
|
|
|
numpy
|
|
|
|
setuptools
|
|
|
|
wheel
|
|
|
|
];
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
meta = {
|
|
|
|
description = "This set of C (Cython) extensions provides acceleration of common operations for slow points in PyOpenGL 3.x";
|
2023-02-22 10:55:15 +00:00
|
|
|
homepage = "https://pyopengl.sourceforge.net/";
|
2020-09-25 04:45:31 +00:00
|
|
|
maintainers = with lib.maintainers; [ laikq ];
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|