guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: Add python-json5.


From: guix-commits
Subject: 03/03: gnu: Add python-json5.
Date: Thu, 26 Mar 2020 18:46:00 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 01d5f2c5cd68037666405af00d62bd677d5fd015
Author: Lars-Dominik Braun <address@hidden>
AuthorDate: Fri Feb 7 08:39:55 2020 +0100

    gnu: Add python-json5.
    
    * gnu/packages/python-xyz.scm (python-json5): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 209d856..989474a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -73,6 +73,7 @@
 ;;; Copyright © 2020 Alexandros Theodotou <address@hidden>
 ;;; Copyright © 2020 Josh Marshall <address@hidden>
 ;;; Copyright © 2020 Alexandros Theodotou <address@hidden>
+;;; Copyright © 2020 Lars-Dominik Braun <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -18704,3 +18705,27 @@ evolved from its precursor @code{overtest}.")
     (description "This package provides a pytest plugin that checks URLs for
 HTML-containing files.")
     (license license:bsd-3)))
+
+(define-public python-json5
+  (package
+    (name "python-json5")
+    (version "0.8.5")
+    (source
+     (origin
+       ;; sample.json5 is missing from PyPi source tarball
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/dpranke/pyjson5.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0nyngj18jlkgvm1177lc3cj47wm4yh3dqigygvcvw7xkyryafsqn"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/dpranke/pyjson5";)
+    (synopsis
+     "Python implementation of the JSON5 data format")
+    (description
+     "JSON5 extends the JSON data interchange format to make it slightly more
+usable as a configuration language.  This Python package implements parsing and
+dumping of JSON5 data structures.")
+    (license license:asl2.0)))



reply via email to

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