diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-19 21:33:34 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-19 21:34:33 +0100 |
| commit | 293beaaaa31d4cfcb548bfa9229de24cce1e4433 (patch) | |
| tree | b4a72d4fa5f3921e609966f8409602a30ac0585a /gnu/packages/python-xyz.scm | |
| parent | 9efddd7dae3d595cc89ad96259a5d1ccd5c18650 (diff) | |
gnu: python-netcdf4: Use G-expressions.
* gnu/packages/python-xyz.scm (python-netcdf4): Use G-expressions.
Change-Id: Idba0da37c8c0d7e22a2a5cf784bb8a7c9b80ba12
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a19987e487..db16426d39 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4246,12 +4246,12 @@ of the netcdf4 package before.") "0qxs8r1qmsmg760wm5q0wqlcm7hdd3k7cghryw6wvqd3v5rs7vwm")))) (build-system python-build-system) (arguments - '(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'configure-locations - (lambda* (#:key inputs #:allow-other-keys) - (setenv "HDF5_DIR" (assoc-ref inputs "hdf5")) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'configure-locations + (lambda _ + (setenv "HDF5_DIR" #$(this-package-input "hdf5"))))))) (native-inputs (list python-cython)) (propagated-inputs |
