2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2020-09-25 04:45:31 +00:00
|
|
|
, buildPythonPackage
|
2022-04-15 01:41:22 +00:00
|
|
|
, pythonAtLeast
|
2020-09-25 04:45:31 +00:00
|
|
|
, fetchPypi
|
2023-10-09 19:29:22 +00:00
|
|
|
, cython_3
|
|
|
|
, 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 = [
|
|
|
|
cython_3
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|