5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
35 lines
713 B
Nix
35 lines
713 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonAtLeast
|
|
, fetchPypi
|
|
, cython_3
|
|
, numpy
|
|
, setuptools
|
|
, wheel
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyopengl-accelerate";
|
|
version = "3.1.7";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyOpenGL-accelerate";
|
|
inherit version;
|
|
hash = "sha256-KxI2ISc6k59/0uwidUHjmfm11OgV1prgvbG2xwopNoA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython_3
|
|
numpy
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|