2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-07-20 17:07:26 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyopengl-accelerate";
|
|
|
|
version = "3.1.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "PyOpenGL-accelerate";
|
|
|
|
inherit version;
|
|
|
|
sha256 = "01iggy5jwxv7lxnj51zbmlbhag9wcb7dvrbwgi97i90n0a5m3r8j";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "This set of C (Cython) extensions provides acceleration of common operations for slow points in PyOpenGL 3.x";
|
|
|
|
homepage = "http://pyopengl.sourceforge.net/";
|
|
|
|
maintainers = with lib.maintainers; [ laikq ];
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|