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 ;;; Copyright © 2021 Franck Pérignon ;;; Copyright © 2021 Aleksandr Vityazev +;;; Copyright © 2025 David Elsing ;;; ;;; 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")