guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add python-rdflib-jsonld.


From: guix-commits
Subject: 02/02: gnu: Add python-rdflib-jsonld.
Date: Tue, 21 Apr 2020 05:51:12 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 0e64f12db526dbb87ec0517b02ff2f997ab7ab63
Author: Pjotr Prins <address@hidden>
AuthorDate: Tue Apr 21 12:41:47 2020 +0300

    gnu: Add python-rdflib-jsonld.
    
    * gnu/packages/rdf.scm (python-rdflib-jsonld): New variable.
---
 gnu/packages/rdf.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm
index 2c773af..089e31b 100644
--- a/gnu/packages/rdf.scm
+++ b/gnu/packages/rdf.scm
@@ -4,6 +4,8 @@
 ;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2019 Julien Lepiller <address@hidden>
 ;;; Copyright © 2020 Alexandros Theodotou <address@hidden>
+;;; Copyright © 2020 Pjotr Prins <address@hidden>
+;;; Copyright © 2020 Efraim Flashner <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -369,3 +371,25 @@ powerful language for representing information.")
 
 (define-public python2-rdflib
   (package-with-python2 python-rdflib))
+
+(define-public python-rdflib-jsonld
+  (package
+    (name "python-rdflib-jsonld")
+    (version "0.5.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "rdflib-jsonld" version))
+        (sha256
+         (base32
+          "1v85f4hdlrrk0l1najmqmm79ijrvcj259kwsrrxiq1q5chr5azag"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-nose" ,python-nose)))
+    (propagated-inputs
+     `(("python-rdflib" ,python-rdflib)))
+    (home-page "https://github.com/RDFLib/rdflib-jsonld";)
+    (synopsis "rdflib extension adding JSON-LD parser and serializer")
+    (description "This package provides an rdflib extension adding JSON-LD
+parser and serializer.")
+    (license license:bsd-3)))



reply via email to

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