diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-08-09 15:33:03 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-08-09 15:33:03 +0300 |
commit | ab04b2571771f2050fd9e3272bc1079c43e76f3e (patch) | |
tree | 3f091c9556c82c73bdf06210adee8ebedf302209 | |
parent | 51431f0b9fe7a2b2aba12287fc9ec9a31cc1a36f (diff) | |
download | guix-ab04b2571771f2050fd9e3272bc1079c43e76f3e.tar.gz |
gnu: Add python-cfgraph.
* gnu/packages/rdf.scm (python-cfgraph): New variable.
-rw-r--r-- | gnu/packages/rdf.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index 3471cb604a..e68e57818d 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))) |