guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

24/26: gnu: python-blosc: Build with packaged blosc.


From: guix-commits
Subject: 24/26: gnu: python-blosc: Build with packaged blosc.
Date: Wed, 14 Jun 2023 07:58:55 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 071ee5856d00e22ea9e289e4a7cebe80a7871b06
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Jun 14 11:59:07 2023 +0300

    gnu: python-blosc: Build with packaged blosc.
    
    * gnu/packages/python-xyz.scm (python-blosc)[source]: Add snippet to
    remove bundled sources.
    [arguments]: Add a custom phase to set location of blosc.
    [inputs]: Add c-blosc.
---
 gnu/packages/python-xyz.scm | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8cacdd5796..3be2d0dae5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25237,13 +25237,23 @@ they use the same path.")
        (uri (pypi-uri "blosc" version))
        (sha256
         (base32
-         "1cm91c6r431yla2mbs4895bgiianjf30dfz14vvv99dslygd65jw"))))
+         "1cm91c6r431yla2mbs4895bgiianjf30dfz14vvv99dslygd65jw"))
+       (snippet
+        #~(begin (use-modules (guix build utils))
+                 (delete-file-recursively "c-blosc")))))
     (build-system python-build-system)
     ;; FIXME: all tests pass, but then this error is printed:
     ;; TypeError: calling <function run at 0x7ffff2568d90> returned None, not 
a test
-    (arguments '(#:tests? #f))
+    (arguments
+     (list #:tests? #f
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'find-blosc
+                 (lambda* (#:key inputs #:allow-other-keys)
+                   (setenv "BLOSC_DIR" #$(this-package-input "c-blosc")))))))
     (propagated-inputs
      (list python-numpy))
+    (inputs (list c-blosc))
     (home-page "https://github.com/blosc/python-blosc";)
     (synopsis "Python wrapper for the Blosc data compressor library")
     (description "Blosc is a high performance compressor optimized for binary



reply via email to

[Prev in Thread] Current Thread [Next in Thread]