From: Adam Faiz via Guix-patches via <guix-patches@gnu.org>
To: 62082@debbugs.gnu.org
Subject: [bug#62082] [PATCH] gnu: Add python-json-e.
Date: Fri, 10 Mar 2023 00:52:25 +0800 [thread overview]
Message-ID: <dda64fba-c0e9-b808-3f84-6c775d6d797d@disroot.org> (raw)
From e737a1a084085a211ad96dcb1033a566c06dd878 Mon Sep 17 00:00:00 2001
Message-Id: <e737a1a084085a211ad96dcb1033a566c06dd878.1678379862.git.adam.faiz@disroot.org>
In-Reply-To: <f788ce8ebc205a6e05bcc270865d793d94bf51e9.1678379861.git.adam.faiz@disroot.org>
References: <f788ce8ebc205a6e05bcc270865d793d94bf51e9.1678379861.git.adam.faiz@disroot.org>
From: AwesomeAdam54321 <adam.faiz@disroot.org>
Date: Thu, 9 Mar 2023 23:14:22 +0800
Subject: [PATCH] gnu: Add python-json-e.
* gnu/packages/python-xyz.scm (python-json-e): New variable.
---
gnu/packages/python-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b4173da3fd..92ea561737 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26491,6 +26491,45 @@ (define-public python-xattr
associated with file system objects (files, directories, symlinks, etc).")
(license license:expat)))
+(define-public python-json-e
+ (package
+ (name "python-json-e")
+ (version "4.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/json-e/json-e")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0m3rsl2wvcn1i781d7l4xp0vx58sn89y0fhsvmrczlvkbpywzb3a"))))
+ (build-system python-build-system)
+ (native-inputs
+ (list python-dateutil
+ python-freezegun
+ python-hypothesis
+ python-nose
+ python-pep8
+ python-pyyaml))
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'build 'cd-to-py-dir
+ (lambda _
+ (chdir "py")))
+ (replace 'check
+ (lambda _
+ (invoke "nosetests"))))))
+ (home-page "https://json-e.js.org")
+ (synopsis
+ "Data-structure parameterizer for embedding context in JSON objects")
+ (description
+ "This package provides a data-structure parameterization system written for
+embedding context in JSON objects.")
+ (license license:mpl2.0)))
+
(define-public python-json-logger
(package
(name "python-json-logger")
--
2.39.2
next reply other threads:[~2023-03-09 16:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-09 16:52 Adam Faiz via Guix-patches via [this message]
2024-11-18 23:38 ` bug#62082: [PATCH] gnu: Add python-json-e Sharlatan Hellseher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=dda64fba-c0e9-b808-3f84-6c775d6d797d@disroot.org \
--to=guix-patches@gnu.org \
--cc=62082@debbugs.gnu.org \
--cc=adam.faiz@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.