diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-02 10:26:31 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-30 19:32:18 +0000 |
commit | 2d7596d53d2478f4b26ee0920073b60542d3e946 (patch) | |
tree | c11dfdbfefa6c06420fdc7acab027cfc38dc77a8 | |
parent | f021b7e7e3b695c2eee1981e452c99d7518d63bc (diff) | |
download | guix-2d7596d53d2478f4b26ee0920073b60542d3e946.tar guix-2d7596d53d2478f4b26ee0920073b60542d3e946.tar.gz |
gnu: Add python-sirilic.
* gnu/packages/astronomy.scm (python-sirilic): New variable.
Change-Id: I34fef6d705f01e76566076e25767bd61851d5adc
-rw-r--r-- | gnu/packages/astronomy.scm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 378272715d..4621ab33ac 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2160,6 +2160,44 @@ export the simulated X-ray events to other software packages to simulate the end products of specific X-ray observatories.") (license license:bsd-3))) +(define-public python-sirilic + (package + (name "python-sirilic") + (version "1.15.12") + (source + (origin + (method git-fetch) ; not published on PyPI + (uri (git-reference + (url "https://gitlab.com/free-astro/sirilic") + (commit (string-append "V" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08j7gkyc5jd3kavffdxcr9b1ckmsswsvm61f301kvdqk2xcsh0gb")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ; no tests + (native-inputs + (list nss-certs-for-test)) + (propagated-inputs + (list python-requests + python-wxpython)) + (home-page "https://siril.org/tutorials/pysiril/") + (synopsis "Acquisition files preparation software to proces with SiriL") + (description + "SiriLic (SiriL's Interactif Companion) is a software for preparing +acquisition files (raw, Biases, Flat and Dark) for processing with SiriL +software. + +Features: +@itemize +@item structuring the SiriL working directory into sub-folders +@item convert Raw, Biases , Dark or Flat files into SiriL sequence +@item automatically generate the SiriL script according to the files present +and the options +@item batch process multiple channel and sessions +@end itemize") + (license license:gpl3))) + (define-public python-sncosmo (package (name "python-sncosmo") |