gnu: Add python-tflite-runtime.

Add this dummy package for future pypi imports.

* gnu/packages/machine-learning.scm (python-tflite-runtime): New variable.

Change-Id: Ia9719eb5aabb897c29bef6861f219db664947185
Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
Nicolas Graves 2025-09-01 17:57:58 +02:00 committed by Andreas Enge
parent a7451a7700
commit 1b11494467
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -3430,6 +3430,22 @@ learning models. This package provides the \"lite\" variant for mobile
devices.") devices.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public python-tflite-runtime
(package
(inherit tensorflow-lite)
(name "python-tflite-runtime")
(source #f)
(build-system trivial-build-system)
(outputs (list "out"))
(arguments
(list
#:builder
#~(begin
(mkdir #$output)
(symlink (string-append #$tensorflow-lite:python "/lib")
(string-append #$output "/lib")))))
(native-inputs '())))
(define-public dmlc-core (define-public dmlc-core
(package (package
(name "dmlc-core") (name "dmlc-core")