Files
nixpkgs/pkgs/development/python-modules/pyopengl-accelerate/default.nix
T
Martin Weinelt 528354e66c python312Packages.cython: 0.29.36 -> 3.0.9
Folds the cython_3 attribute into the primary cython attribute and
migrates all packages from the versioned attribute.

The old version will be provided through the cython_0 attribute in an
effort to phase it out.
2024-03-27 18:35:05 +01:00

36 lines
709 B
Nix

{ lib
, buildPythonPackage
, pythonAtLeast
, fetchPypi
, cython
, 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
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;
};
}