guix-commits
[Top][All Lists]
Advanced

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

14/33: gnu: python-cdflib: Fix version detection.


From: guix-commits
Subject: 14/33: gnu: python-cdflib: Fix version detection.
Date: Wed, 27 Sep 2023 07:09:13 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 4cef9cb160ce2e88d42e93d22d43bf0739d13e79
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu Sep 7 23:32:14 2023 +0100

    gnu: python-cdflib: Fix version detection.
    
    * gnu/packages/astronomy.scm (python-cdflib): Fix version detection
    during build Wheel package.
    [arguments]: Add new phase 'set-env-version.
    [native-inputs]: Add python-setuptools-scm.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/astronomy.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 95b29ec2ea..335c075a68 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1657,6 +1657,10 @@ bad pixel tracking throughout the reduction process.")
     (arguments
      (list #:phases
            #~(modify-phases %standard-phases
+               (add-before 'build 'set-env-version
+                 (lambda _
+                   (setenv "SETUPTOOLS_SCM_PRETEND_VERSION"
+                           #$version)))
                (add-before 'check 'set-home-env
                  (lambda _
                    (setenv "HOME" (getcwd)))))))
@@ -1668,6 +1672,7 @@ bad pixel tracking throughout the reduction process.")
            python-pytest
            python-pytest-cov
            python-pytest-remotedata
+           python-setuptools-scm
            python-xarray))
     (home-page "https://github.com/MAVENSDC/cdflib";)
     (synopsis "Python library to deal with NASA's CDF astronmical data format")



reply via email to

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