[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
19/26: gnu: Add python-bayesicfitting.
From: |
guix-commits |
Subject: |
19/26: gnu: Add python-bayesicfitting. |
Date: |
Wed, 14 Jun 2023 07:58:54 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 2095fe7b9671b69b060dff8be2a4eea89cd61923
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Tue May 30 20:58:44 2023 +0100
gnu: Add python-bayesicfitting.
* gnu/packages/astronomy.scm (python-bayesicfitting): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/astronomy.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 5c42512a0a..f2ef829ca9 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1355,6 +1355,38 @@ be as fast as possible so some of the readability has
been sacrificed,
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 @acronym{HCSS, Herschel Common Science System}. 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")
- 10/26: gnu: Add python-stsci-imagestats., (continued)
- 10/26: gnu: Add python-stsci-imagestats., guix-commits, 2023/06/14
- 12/26: gnu: Add python-tweakwcs., guix-commits, 2023/06/14
- 15/26: gnu: Add python-parsley., guix-commits, 2023/06/14
- 16/26: gnu: Add python-crds., guix-commits, 2023/06/14
- 22/26: gnu: Add python-stcal., guix-commits, 2023/06/14
- 01/26: gnu: opencv: Fix building on riscv64-linux., guix-commits, 2023/06/14
- 07/26: gnu: Add python-rad., guix-commits, 2023/06/14
- 08/26: gnu: Add python-roman-datamodels., guix-commits, 2023/06/14
- 11/26: gnu: Add python-stsci-stimage., guix-commits, 2023/06/14
- 13/26: gnu: Add python-synphot., guix-commits, 2023/06/14
- 19/26: gnu: Add python-bayesicfitting.,
guix-commits <=
- 23/26: gnu: Add python-jwst., guix-commits, 2023/06/14
- 26/26: gnu: python-blosc: Enable tests., guix-commits, 2023/06/14
- 14/26: gnu: Add python-stsynphot., guix-commits, 2023/06/14
- 17/26: gnu: Add python-stdatamodels., guix-commits, 2023/06/14
- 18/26: gnu: Add python-stpipe., guix-commits, 2023/06/14
- 20/26: gnu: Add python-wiimatch., guix-commits, 2023/06/14
- 21/26: gnu: Add python-drizzle., guix-commits, 2023/06/14
- 25/26: gnu: python-blosc: Update to 1.11.1., guix-commits, 2023/06/14
- 24/26: gnu: python-blosc: Build with packaged blosc., guix-commits, 2023/06/14