diff options
author | Sisiutl <sisiutl@egregore.fun> | 2024-10-14 11:04:49 +0200 |
---|---|---|
committer | Sisiutl <sisiutl@egregore.fun> | 2024-10-14 11:04:49 +0200 |
commit | 7f9c9df20430a47a9b28c42d6708d1b516bf527d (patch) | |
tree | 4b9615a59e40834a08b321c133e6994573992ebf | |
parent | 797f22959db8cac77295db78eaa28453e22147f9 (diff) |
pyopengl 2
-rw-r--r-- | sigils/packages/python-xyz.scm | 64 |
1 files changed, 33 insertions, 31 deletions
diff --git a/sigils/packages/python-xyz.scm b/sigils/packages/python-xyz.scm index 7dff2c9..1b7f19d 100644 --- a/sigils/packages/python-xyz.scm +++ b/sigils/packages/python-xyz.scm @@ -19,8 +19,9 @@ #:use-module (gnu packages python-check) #:use-module (gnu packages python-xyz) #:use-module (gnu packages python-web) - #:use-module (gnu packages xdisorg)) + #:use-module (gnu packages xdisorg) ;; pyopengl + #:use-module (gnu packages gl)) (define-public python-pyopengl @@ -38,7 +39,8 @@ (inputs (list mesa freeglut glu)) (arguments - `(#:phases + `(#:tests? #f + #:phases (modify-phases %standard-phases (add-before 'build 'fix-paths (lambda* (#:key inputs outputs #:allow-other-keys) @@ -308,33 +310,33 @@ way. Based on the Lo-Dash Javascript library.") "This package provides a Python wrapper for the Discord user API.") (license license:expat))) -(define-public python-picamera2 - (package - (name "python-picamera2") - (version "0.3.22") - (source - (origin - (method url-fetch) - (uri (pypi-uri "picamera2" version)) - (sha256 - (base32 "0bc3sr3adahddzs3j9i1yndl962qc0dpmpmq9f3wpfs28f0nja49")))) - (build-system pyproject-build-system) - (propagated-inputs (list python-av - python-numpy - python-pidng - python-piexif - python-pillow - python-prctl - python-jsonschema - python-libarchive-c - python-tqdm)) - ;; python-simplejpeg - ;; python-v4l2-python3)) - (home-page "https://github.com/RaspberryPi/picamera2") - (synopsis - "libcamera-based Python interface to Raspberry Pi cameras") - (description - "The libcamera-based Python interface to Raspberry Pi cameras, based on -the original Picamera library.") - (license #f))) +;; (define-public python-picamera2 +;; (package +;; (name "python-picamera2") +;; (version "0.3.22") +;; (source +;; (origin +;; (method url-fetch) +;; (uri (pypi-uri "picamera2" version)) +;; (sha256 +;; (base32 "0bc3sr3adahddzs3j9i1yndl962qc0dpmpmq9f3wpfs28f0nja49")))) +;; (build-system pyproject-build-system) +;; (propagated-inputs (list python-av +;; python-numpy +;; python-pidng +;; python-piexif +;; python-pillow +;; python-prctl +;; python-jsonschema +;; python-libarchive-c +;; python-tqdm)) +;; ;; python-simplejpeg +;; ;; python-v4l2-python3)) +;; (home-page "https://github.com/RaspberryPi/picamera2") +;; (synopsis +;; "libcamera-based Python interface to Raspberry Pi cameras") +;; (description +;; "The libcamera-based Python interface to Raspberry Pi cameras, based on +;; the original Picamera library.") +;; (license #f))) |