mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-cesium: Move to (gnu packages astronomy).
The dependencies of this package are already in (gnu packages astronomy). * gnu/packages/python-xyz.scm (python-cesium): Move from here… * gnu/packages/astronomy.scm (python-cesium): …to here. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
c83fe9e840
commit
26826a0728
2 changed files with 40 additions and 41 deletions
|
@ -2490,6 +2490,46 @@ attempting to maintain ISTP compliance
|
||||||
"This package contains a helper functionality to test ROMAN and JWST.")
|
"This package contains a helper functionality to test ROMAN and JWST.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-cesium
|
||||||
|
(package
|
||||||
|
(name "python-cesium")
|
||||||
|
(version "0.12.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "cesium" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0jr0ycqz9ns6mcskm4sxx92k40fj3v0x9knjaw5ac9f3mpqxsfbv"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; The installed test files contain the /gnu/store location, not the
|
||||||
|
;; location of the discovered test files from the build directory.
|
||||||
|
;; The test framework doesn't like this. The easiest way around
|
||||||
|
;; this mismatch is to jump to the output directory.
|
||||||
|
(add-before 'check 'check-chdir
|
||||||
|
(lambda _ (chdir #$output))))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-click ;XXX required by python-dask
|
||||||
|
python-cloudpickle
|
||||||
|
python-dask
|
||||||
|
python-gatspy
|
||||||
|
python-joblib
|
||||||
|
python-numpy
|
||||||
|
python-pandas
|
||||||
|
python-scikit-learn
|
||||||
|
python-scipy
|
||||||
|
python-toolz))
|
||||||
|
(native-inputs (list python-cython python-pytest python-setuptools-scm
|
||||||
|
python-setuptools python-wheel))
|
||||||
|
(home-page "https://pypi.org/project/cesium/")
|
||||||
|
(synopsis "Library for time-series feature extraction and processing")
|
||||||
|
(description
|
||||||
|
"Cesium is a library for time-series feature extraction and processing.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-cmyt
|
(define-public python-cmyt
|
||||||
(package
|
(package
|
||||||
(name "python-cmyt")
|
(name "python-cmyt")
|
||||||
|
|
|
@ -185,7 +185,6 @@
|
||||||
#:use-module (gnu packages adns)
|
#:use-module (gnu packages adns)
|
||||||
#:use-module (gnu packages aidc)
|
#:use-module (gnu packages aidc)
|
||||||
#:use-module (gnu packages algebra)
|
#:use-module (gnu packages algebra)
|
||||||
#:use-module (gnu packages astronomy)
|
|
||||||
#:use-module (gnu packages attr)
|
#:use-module (gnu packages attr)
|
||||||
#:use-module (gnu packages audio)
|
#:use-module (gnu packages audio)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
|
@ -21687,46 +21686,6 @@ Eventlet, or gevent. Tasks can execute asynchronously (in the background) or
|
||||||
synchronously (wait until ready).")
|
synchronously (wait until ready).")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-cesium
|
|
||||||
(package
|
|
||||||
(name "python-cesium")
|
|
||||||
(version "0.12.1")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (pypi-uri "cesium" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0jr0ycqz9ns6mcskm4sxx92k40fj3v0x9knjaw5ac9f3mpqxsfbv"))))
|
|
||||||
(build-system pyproject-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:phases
|
|
||||||
#~(modify-phases %standard-phases
|
|
||||||
;; The installed test files contain the /gnu/store location, not the
|
|
||||||
;; location of the discovered test files from the build directory.
|
|
||||||
;; The test framework doesn't like this. The easiest way around
|
|
||||||
;; this mismatch is to jump to the output directory.
|
|
||||||
(add-before 'check 'check-chdir
|
|
||||||
(lambda _ (chdir #$output))))))
|
|
||||||
(propagated-inputs
|
|
||||||
(list python-click ;XXX required by python-dask
|
|
||||||
python-cloudpickle
|
|
||||||
python-dask
|
|
||||||
python-gatspy
|
|
||||||
python-joblib
|
|
||||||
python-numpy
|
|
||||||
python-pandas
|
|
||||||
python-scikit-learn
|
|
||||||
python-scipy
|
|
||||||
python-toolz))
|
|
||||||
(native-inputs (list python-cython python-pytest python-setuptools-scm
|
|
||||||
python-setuptools python-wheel))
|
|
||||||
(home-page "https://pypi.org/project/cesium/")
|
|
||||||
(synopsis "Library for time-series feature extraction and processing")
|
|
||||||
(description
|
|
||||||
"Cesium is a library for time-series feature extraction and processing.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public python-translitcodec
|
(define-public python-translitcodec
|
||||||
(package
|
(package
|
||||||
(name "python-translitcodec")
|
(name "python-translitcodec")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue