[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/10: gnu: Add python-pymarshal.
From: |
guix-commits |
Subject: |
04/10: gnu: Add python-pymarshal. |
Date: |
Thu, 13 Jun 2024 05:39:27 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 47e909a55408844923b6cb073ebbf25b77b9c2ca
Author: Sughosha <sughosha@disroot.org>
AuthorDate: Wed Jun 5 21:22:08 2024 +0530
gnu: Add python-pymarshal.
* gnu/packages/python-xyz.scm (python-pymarshal): New variable.
Change-Id: I6a1d2f8f21869856a9a227bed213d9f71204b2d4
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4b09f49cc0..556606b6b4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4485,6 +4485,30 @@ type hints and parse from command line, config files and
environment
variables.")
(license license:expat)))
+(define-public python-pymarshal
+ (package
+ (name "python-pymarshal")
+ (version "2.2.3")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "pymarshal" version))
+ (sha256
+ (base32
+ "1lhb7yim60pvclbd440zd4n50xs1d2rvmnrhhvib3hyv0dxil5j3"))))
+ (build-system pyproject-build-system)
+ (arguments
+ ;; Test fails with this error:
+ ;; "CovReportWarning: Failed to generate report: No data to report."
+ (list #:tests? #f))
+ (native-inputs
+ (list python-pytest python-pytest-cov))
+ (propagated-inputs (list python-bson python-pyyaml))
+ (home-page "https://gitlab.com/d3v-t00lz/pymarshal")
+ (synopsis "Pythonic implementation of Golang struct (un)marshalling")
+ (description "PyMarshal replicates the feature of (un)marshalling structs
+in Golang.")
+ (license license:bsd-2)))
+
(define-public python-simplejson
(package
(name "python-simplejson")
- branch master updated (f65bbca6e4 -> 7e00fb9f31), guix-commits, 2024/06/13
- 01/10: ci: Add cross-compilation jobs for x86_64-linux-gnux32., guix-commits, 2024/06/13
- 03/10: gnu: libreoffice: Update to 7.6.7.2., guix-commits, 2024/06/13
- 06/10: gnu: Add python-wavefile., guix-commits, 2024/06/13
- 05/10: gnu: Add python-mido., guix-commits, 2024/06/13
- 04/10: gnu: Add python-pymarshal.,
guix-commits <=
- 02/10: maint: Do not cross-compile to bare-metal targets., guix-commits, 2024/06/13
- 07/10: gnu: Add stargate., guix-commits, 2024/06/13
- 08/10: gnu: stargate: Move libsbsms and soundtouch forks to audio.scm., guix-commits, 2024/06/13
- 10/10: substitute: Don’t keep cache entries more than a few days., guix-commits, 2024/06/13
- 09/10: doc: Use a symbol for Cuirass specification names., guix-commits, 2024/06/13