guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add python-cfgraph.


From: guix-commits
Subject: 01/03: gnu: Add python-cfgraph.
Date: Sun, 9 Aug 2020 08:48:40 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit ab04b2571771f2050fd9e3272bc1079c43e76f3e
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Aug 9 15:33:03 2020 +0300

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

diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm
index 3471cb6..e68e578 100644
--- a/gnu/packages/rdf.scm
+++ b/gnu/packages/rdf.scm
@@ -393,3 +393,23 @@ powerful language for representing information.")
     (description "This package provides an rdflib extension adding JSON-LD
 parser and serializer.")
     (license license:bsd-3)))
+
+(define-public python-cfgraph
+  (package
+    (name "python-cfgraph")
+    (version "0.2.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "CFGraph" version))
+        (sha256
+         (base32
+          "0x7yz0lvqb6mkhl5fbml27sppmscgpf8v2ism9jzzf0h982ffzxm"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-rdflib" ,python-rdflib)))
+    (home-page "https://github.com/hsolbrig/CFGraph";)
+    (synopsis "RDF Collections flattener for rdflib")
+    (description
+     "This package contains RDF Collections flattener for @code{rdflib}.")
+    (license license:asl2.0)))



reply via email to

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