python: pyopengl-accelerate: init at 3.1.5
This commit is contained in:
parent
1f8f476ca2
commit
d4b6ea979a
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -5480,6 +5480,8 @@ in {
|
|||||||
|
|
||||||
pytest-helpers-namespace = callPackage ../development/python-modules/pytest-helpers-namespace { };
|
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-html = callPackage ../development/python-modules/pytest-html { };
|
||||||
|
|
||||||
pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { };
|
pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { };
|
||||||
|
Loading…
Reference in New Issue
Block a user