[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: python-cbor: Fix build.
From: |
guix-commits |
Subject: |
02/02: gnu: python-cbor: Fix build. |
Date: |
Mon, 16 Dec 2024 08:10:18 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit 351e094be1327c24f5acabb6a014b5f3dd412911
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Mon Dec 16 13:09:49 2024 +0000
gnu: python-cbor: Fix build.
* gnu/packages/serialization.scm (python-cbor) [native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I18f86c8afdafbd58b170925665c3a2c66822ac9e
---
gnu/packages/serialization.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 5effa5909d..1a965103aa 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -859,6 +859,9 @@ style and key ordering are kept, so you can diff the
source.")
(base32
"1dmv163cnslyqccrybkxn0c9s1jk1mmafmgxv75iamnz5lk5l8hk"))))
(build-system pyproject-build-system)
+ (native-inputs
+ (list python-setuptools
+ python-wheel))
(home-page "https://github.com/brianolson/cbor_py")
(synopsis "Implementation of the Concise Binary Object Representation")
(description