guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add python-flatbuffers.


From: guix-commits
Subject: branch master updated: gnu: Add python-flatbuffers.
Date: Sun, 22 Oct 2023 11:29:56 -0400

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new f9b08aa134 gnu: Add python-flatbuffers.
f9b08aa134 is described below

commit f9b08aa13477cadfa26097c25fcacfc59b7d712d
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Oct 22 16:54:26 2023 +0200

    gnu: Add python-flatbuffers.
    
    * gnu/packages/serialization.scm (python-flatbuffers): New variable.
---
 gnu/packages/serialization.scm | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index d0b4bd2735..e836b4f8b3 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2015, 2017, 2019, 2020, 2021 Ricardo Wurmus 
<rekado@elephly.net>
+;;; Copyright © 2015, 2017, 2019, 2020, 2021, 2023 Ricardo Wurmus 
<rekado@elephly.net>
 ;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
 ;;; Copyright © 2016 David Craven <david@craven.ch>
 ;;; Copyright © 2016, 2019, 2020, 2022 Marius Bakke <marius@gnu.org>
@@ -819,6 +819,23 @@ game development and other performance-critical 
applications.")
         ;; Compile with -fPIC, needed for shared lib.
         #~(cons "-DFLATBUFFERS_CXX_FLAGS=-fPIC" #$flags))))))
 
+(define-public python-flatbuffers
+  (package
+    (name "python-flatbuffers")
+    (version "23.1.21")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "flatbuffers" version))
+       (sha256
+        (base32 "11gzc7mhl984248q6abz5rrsph76j0y99mwk24xc90sxpcxr2j59"))))
+    (build-system pyproject-build-system)
+    (home-page "https://google.github.io/flatbuffers/";)
+    (synopsis "FlatBuffers serialization for Python")
+    (description "This package provides the @code{FlatBuffers} serialization
+format for Python.")
+    (license license:asl2.0)))
+
 (define-public python-feather-format
   (package
     (name "python-feather-format")



reply via email to

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