python: pyopengl-accelerate: init at 3.1.5

gstqt5
laikq 2020-07-20 18:07:26 +02:00 committed by Jon
parent 1f8f476ca2
commit d4b6ea979a
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, lib
}:
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;
};
}

View File

@ -5480,6 +5480,8 @@ in {
pytest-helpers-namespace = callPackage ../development/python-modules/pytest-helpers-namespace { };
pyopengl-accelerate = callPackage ../development/python-modules/pyopengl-accelerate { };
pytest-html = callPackage ../development/python-modules/pytest-html { };
pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { };