guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add python-ld.


From: guix-commits
Subject: 01/02: gnu: Add python-ld.
Date: Wed, 14 Apr 2021 11:16:04 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 9fd8f44bd7524399651ba677e93b5e4d36f8e524
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Apr 14 17:05:12 2021 +0200

    gnu: Add python-ld.
    
    * gnu/packages/python-xyz.scm (python-ld): New variable.
---
 gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9660f6f..c01993e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24618,6 +24618,27 @@ typographically-improved HTML.  While often used in 
conjunction with Jinja and
 Django template systems, the filters can be used in any environment.")
     (license license:bsd-3)))
 
+(define-public python-ld
+  (package
+    (name "python-ld")
+    (version "0.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "ld" version))
+       (sha256
+        (base32
+         "1k4ydp5rgkv4985v459kcl06i1igjm1ywvh2vkbi9ck1zyyri1z5"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-six" ,python-six)))
+    (home-page "https://github.com/nir0s/ld";)
+    (synopsis "OS platform information API")
+    (description
+     "The ld package provides information about the GNU/Linux distribution it
+runs on, such as a reliable machine-readable ID, or version information.")
+    (license license:asl2.0)))
+
 (define-public python-pathvalidate
   (package
     (name "python-pathvalidate")



reply via email to

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