summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-12-20 21:39:25 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-27 17:24:44 +0000
commite033bf01e638eaf94b92f55b4a8616d79009b17f (patch)
tree3b67e898a041fcf2f29e75ef1862efd009d5397f /gnu
parentdc95ec12e89c44e3d2600393e68b71e9cf7111a1 (diff)
gnu: Add python-celery-minimal.
* gnu/packages/python-xyz.scm (python-celery-minimal): New variable. Change-Id: Ib6c71748d52cdfee06c894e74bb067e8522fc6e4 Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm10
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a9909a42bba..b656e669c57 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20614,6 +20614,16 @@ Eventlet, or gevent. Tasks can execute asynchronously (in the background) or
synchronously (wait until ready).")
(license license:bsd-3)))
+;; A bare minimal package, mainly to use in tests and reduce closure
+;; size. Tests are left out in the main package to slim down native-inputs.
+(define-public python-celery-minimal
+ (package/inherit python-celery
+ (name "python-celery-minimal")
+ (arguments
+ (list #:tests? #f))
+ (native-inputs
+ (list python-setuptools))))
+
(define-public python-anyqt
(package
(name "python-anyqt")