guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/09: gnu: Add python-lightning-utilities.


From: guix-commits
Subject: 06/09: gnu: Add python-lightning-utilities.
Date: Wed, 10 May 2023 02:40:04 -0400 (EDT)

rekado pushed a commit to branch wip-pytorch-lightning
in repository guix.

commit fbfda96314cd5a31881970d5c22507b6e1e049a0
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 9 22:59:05 2023 +0200

    gnu: Add python-lightning-utilities.
    
    * gnu/packages/machine-learning.scm (python-lightning-utilities): New 
variable.
---
 gnu/packages/machine-learning.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index 2e135bb068..de49e25c28 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -3445,6 +3445,26 @@ Note: currently this package does not provide GPU 
support.")
 AI services.")
     (license license:asl2.0)))
 
+(define-public python-lightning-utilities
+  (package
+    (name "python-lightning-utilities")
+    (version "0.8.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "lightning-utilities" version))
+              (sha256
+               (base32
+                "084pn8fizxrcn1699jb8x2jsg4wcx01l65bwxpgnq0kzqp3rapcf"))))
+    (build-system python-build-system)
+    (propagated-inputs (list python-importlib-metadata python-packaging
+                             python-typing-extensions))
+    (native-inputs (list python-coverage))
+    (home-page "https://github.com/Lightning-AI/utilities";)
+    (synopsis "PyTorch Lightning sample project")
+    (description "This package provides common Python utilities and GitHub
+Actions for the Lightning suite of libraries.")
+    (license license:asl2.0)))
+
 ;; Keep this in sync with python-pytorch
 (define-public python-torchvision
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]