~ruther/guix-local

85eb135cb34cf8d78b5d911699a24bdfc280f359 — Sharlatan Hellseher 1 year, 5 months ago 1e83631
gnu: python-cdflib: Update to 1.3.3.

* gnu/packages/astronomy.scm (python-cdflib): Update to 1.3.3.
[native-inputs]: Remove python-astropy and python-hypothesis; add
python-astropy-minimal.

Change-Id: I71192f39ac63152bd919a9ba9acdd3475d744e1e
1 files changed, 6 insertions(+), 8 deletions(-)

M gnu/packages/astronomy.scm
M gnu/packages/astronomy.scm => gnu/packages/astronomy.scm +6 -8
@@ 2028,7 2028,7 @@ bad pixel tracking throughout the reduction process.")
(define-public python-cdflib
  (package
    (name "python-cdflib")
    (version "1.3.2")
    (version "1.3.3")
    (source
     (origin
       (method git-fetch)               ; no tests in PyPI release


@@ 2037,28 2037,26 @@ bad pixel tracking throughout the reduction process.")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0g723s5xg7vd37vlbjpgpiljd3vxwccslwzcf619zvdnc2xbcw2c"))))
        (base32 "1b7r3hfkb3ldi02a6pzdcm4vrnz2ywsxy7zgg5jn903i4686wnsb"))))
    (build-system pyproject-build-system)
    (arguments
     (list #:phases
           #~(modify-phases %standard-phases
               (add-before 'build 'set-env-version
                 (lambda _
                   (setenv "SETUPTOOLS_SCM_PRETEND_VERSION"
                           #$version)))
                   (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))
               (add-before 'check 'set-home-env
                 (lambda _
                   (setenv "HOME" (getcwd)))))))
    (native-inputs
     (list python-astropy
           python-hypothesis
     (list python-astropy-minimal
           python-pytest
           python-pytest-cov
           python-pytest-remotedata
           python-setuptools
           python-setuptools-scm
           python-xarray
           python-wheel))
           python-wheel
           python-xarray))
    (propagated-inputs
     (list python-numpy))
    (home-page "https://github.com/MAVENSDC/cdflib")