[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63806] [PATCH 14/18] gnu: Add python-bayesicfitting.
From: |
Sharlatan Hellseher |
Subject: |
[bug#63806] [PATCH 14/18] gnu: Add python-bayesicfitting. |
Date: |
Tue, 30 May 2023 20:58:44 +0100 |
* gnu/packages/astronomy.scm (python-bayesicfitting): New variable.
---
gnu/packages/astronomy.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index cb6018c588..bb90801408 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1355,6 +1355,37 @@ (define-public python-astroscrappy
specifically in the C code.")
(license license:bsd-3)))
+(define-public python-bayesicfitting
+ (package
+ (name "python-bayesicfitting")
+ (version "3.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dokester/BayesicFitting")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "07y9dr9wxhxrvhk0jjakhbyrgal60i92m7z7q14fp12k8x0gl69l"))))
+ (build-system python-build-system)
+ (arguments
+ (list #:phases #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "unittest" "discover"
+ "test")))))))
+ (propagated-inputs (list python-astropy python-future python-matplotlib
+ python-numpy python-scipy))
+ (home-page "https://www.bayesicfitting.nl")
+ (synopsis "Python Toolbox for Astronimical Bayesian fitting")
+ (description
+ "The BayesicFitting package is a python version of the the fitter classes
+in Herschel Common Science System (HCSS). HCSS was the all encompassing
software
+system for the operations and analysis of the ESA satelite Herschel.")
+ (license license:gpl3+)))
+
(define-public python-ccdproc
(package
(name "python-ccdproc")
--
2.40.1
- [bug#63806] [PATCH 01/18] gnu: Add python-pysynshot., (continued)
- [bug#63806] [PATCH 01/18] gnu: Add python-pysynshot., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 04/18] gnu: Add python-stsci-image., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 06/18] gnu: Add python-stsci-stimage., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 03/18] gnu: Add python-roman-datamodels., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 07/18] gnu: Add python-tweakwcs., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 09/18] gnu: Add python-stsynphot., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 08/18] gnu: Add python-synphot., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 05/18] gnu: Add python-stsci-imagestats., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 13/18] gnu: Add python-stpipe., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 11/18] gnu: Add python-crds., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 14/18] gnu: Add python-bayesicfitting.,
Sharlatan Hellseher <=
- [bug#63806] [PATCH 12/18] gnu: Add python-stdatamodels., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 10/18] gnu: Add python-parsley., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 15/18] gnu: Add python-wiimatch., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 16/18] gnu: Add python-drizzle., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 17/18] gnu: Add python-stcal., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 18/18] gnu: Add python-jwst., Sharlatan Hellseher, 2023/05/30