summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-18 12:44:45 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-18 12:54:06 +0100
commit73fc73a5afdd4e51dacf36c6d6d45e7e2c5baa4a (patch)
treeb2c91d25dee6af7548508e3c7f1c40c990bd0c24 /gnu
parent56a15ca05d985b3ec20cf5b9cc4852a26913826f (diff)
gnu: python-types-orjson: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-types-orjson)[build-system]: Switch to pyproject-build-system. [arguments] <tests?>: No tests. [native-inputs]: Add python-setuptools. Change-Id: I4cdf5da7dffd6466d381ca360d56c379c3f446f7
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm16
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d1532f473a..11935e6f4f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -38015,13 +38015,15 @@ both.")
(package
(name "python-types-orjson")
(version "3.6.2")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "types-orjson" version))
- (sha256
- (base32
- "0f66lf2qrl9d4vad42db3dmnzv89h4rr05r5zxx5qcl6kb3zr6ng"))))
- (build-system python-build-system)
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "types-orjson" version))
+ (sha256
+ (base32 "0f66lf2qrl9d4vad42db3dmnzv89h4rr05r5zxx5qcl6kb3zr6ng"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ;no tests
+ (native-inputs (list python-setuptools))
(home-page "https://github.com/python/typeshed")
(synopsis "Typing stubs for orjson")
(description "This is a PEP 561 type stub package for the @code{orjson}