diff options
author | David Elsing <david.elsing@posteo.net> | 2025-03-30 22:06:56 +0000 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-08 13:24:38 +0200 |
commit | bfbdaef9455dc6fa94e691dc6eb5dfc5758b6775 (patch) | |
tree | 69ad82889b9fbf735010eeb909cf8c1f806a46a8 | |
parent | 191b96e7eef929a385f11d643622dc186bad4434 (diff) | |
download | guix-bfbdaef9455dc6fa94e691dc6eb5dfc5758b6775.tar.gz guix-bfbdaef9455dc6fa94e691dc6eb5dfc5758b6775.zip |
gnu: Add boost-numpy.
* gnu/packages/boost.scm (boost-numpy): New variable.
Change-Id: Ibbb1e17a843999289ceba60ea9dbaa7c4b1dad53
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/boost.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm index 4f54c6b578..f50d49188d 100644 --- a/gnu/packages/boost.scm +++ b/gnu/packages/boost.scm @@ -18,6 +18,7 @@ ;;; Copyright © 2021, 2022 Greg Hogan <code@greghogan.com> ;;; Copyright © 2021 Franck Pérignon <franck.perignon@univ-grenoble-alpes.fr> ;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org> +;;; Copyright © 2025 David Elsing <david.elsing@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -50,6 +51,7 @@ #:use-module (gnu packages llvm) #:use-module (gnu packages perl) #:use-module (gnu packages python) + #:use-module (gnu packages python-xyz) #:use-module (gnu packages shells) #:use-module (gnu packages mpi)) @@ -359,6 +361,14 @@ across a broad spectrum of applications.") (delete "python-minimal-wrapper"))) (properties '((hidden? . #t))))) +(define-public boost-numpy + (package + (inherit boost) + (name "boost-numpy") + (native-inputs + (modify-inputs (package-native-inputs boost) + (append python-numpy))))) + (define-public boost-sync (let ((commit "e690de2d30e2f1649ff500c9a6f3539814994b1c") (version "1.55") |