unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 73915@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>,
	Andreas Enge <andreas@enge.fr>, Eric Bavier <bavier@posteo.net>,
	Sharlatan Hellseher <sharlatanus@gmail.com>
Subject: [bug#73915] [PATCH 35/42] gnu: Add python-coolest.
Date: Sun, 20 Oct 2024 20:52:37 +0100	[thread overview]
Message-ID: <1d8590b1ce79a1f4ba7862937013aedcf5bd8eef.1729453324.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1729453324.git.sharlatanus@gmail.com>

* gnu/packages/astronomy.scm (python-coolest): New variable.

Change-Id: I464c17087c17dd76bac759c0aafe1d5c2f247cff
---
 gnu/packages/astronomy.scm | 41 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 191b440baa..5222759028 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1647,6 +1647,47 @@ (define-public python-astroml
 mining in astronomy.")
     (license license:bsd-2)))
 
+(define-public python-coolest
+  (package
+    (name "python-coolest")
+    (version "0.1.9")
+    (source
+     (origin
+       (method git-fetch) ; no tests in the PyPI tarball
+       (uri (git-reference
+             (url "https://github.com/aymgal/COOLEST")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0mfkgfp6f0ay6kndh7vk8l0g2ijr32k55x3pmj15lp9kd8k3ln4r"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:test-flags
+      ;; Cycle with python-lenstronomy.
+      #~(list "--ignore=test/api/profiles/light_test.py"
+              "--ignore=test/api/profiles/mass_test.py")))
+    (native-inputs
+     (list python-pytest
+           python-scikit-image))
+    (propagated-inputs
+     (list python-astropy
+           python-getdist
+           python-jsonpickle
+           python-numpy
+           python-pandas
+           python-scipy))
+    (home-page "https://github.com/aymgal/COOLEST")
+    (synopsis "Strong Gravitational Lensing Analyses")
+    (description
+     "The COde-independent Organized LEns STandard (COOLEST) defines a set of
+conventions to be shared across the strong lensing community, in order to
+consistently store, share and improve lens modeling analyses.  In short, this
+project provides tools to manipulate lens models as a single, human-readable
+JSON template file alongside Python routines for visualizing and comparing
+lens models possibly obtained from different modeling codes.")
+    (license  license:gpl3)))
+
 (define-public python-extinction
   (package
     (name "python-extinction")
-- 
2.46.0





  parent reply	other threads:[~2024-10-20 19:56 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-20 19:49 [bug#73915] [PATCH 00/42] Astronomy update 2024/10 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 01/42] gnu: calceph: Update to 4.0.1 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 02/42] gnu: indi-2.0: Update to 2.1.0 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 03/42] gnu: Add lcms-next Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 04/42] gnu: siril: Update to 1.3.3 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 05/42] gnu: stellarium: Update to 24.3 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 06/42] gnu: wcslib: Update to 8.3 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 07/42] gnu: python-astroalign: Update to 2.6.0 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 08/42] gnu: python-astropy-iers-data: Update to 0.2024.10.14.0.32.55 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 09/42] gnu: python-astropy: Update to 6.1.4 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 10/42] gnu: python-crds: Update to 12.0.4 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 11/42] gnu: python-ephem: Update to 4.1.6 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 12/42] gnu: python-glymur: Update to 0.13.6 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 13/42] gnu: python-ndcube: Update to 2.2.3 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 14/42] gnu: python-photutils: Update to 2.0.1 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 15/42] gnu: python-pynbody: Update to 1.6.0.post0 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 16/42] gnu: python-pyregion: Update to 2.3.0 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 17/42] gnu: python-pyvo: Update to 1.5.3 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 18/42] gnu: python-pyxsim: Update to 4.4.2 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 19/42] gnu: python-radio-beam: Update to 0.3.8 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 20/42] gnu: python-regions: Update to 0.10 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 21/42] gnu: python-sep-pjw: Update to 1.3.6 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 22/42] gnu: python-spectral-cube: Disable tests Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 23/42] gnu: python-specutils: Update to 1.18.0 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 24/42] gnu: python-stdatamodels: Update to 2.1.1 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 25/42] gnu: python-sunpy: Update to 6.0.3 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 26/42] gnu: python-tweakwcs: Update to 0.8.9 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 27/42] gnu: python-zodipy: Update to 1.1.0 Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 28/42] gnu: python-pytest-mpl: Adjust inputs Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 29/42] gnu: Add python-astrodendro Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 30/42] gnu: python-glue-core: Adjust inputs Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 31/42] gnu: Add python-hsluv Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 32/42] gnu: Add python-pysiril Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 33/42] gnu: Add python-sirilic Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 34/42] gnu: Add python-getdist Sharlatan Hellseher
2024-10-20 19:52 ` Sharlatan Hellseher [this message]
2024-10-20 19:52 ` [bug#73915] [PATCH 36/42] gnu: Add python-acstools Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 37/42] gnu: Add python-pycollada Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 38/42] gnu: Add python-pymcubes Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 39/42] gnu: Add iraf-community Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 40/42] gnu: Add python-halotools Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 41/42] gnu: python-statmorph: Skip failing tests Sharlatan Hellseher
2024-10-20 19:52 ` [bug#73915] [PATCH 42/42] gnu: python-webbpsf: Disable more " Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1d8590b1ce79a1f4ba7862937013aedcf5bd8eef.1729453324.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=73915@debbugs.gnu.org \
    --cc=andreas@enge.fr \
    --cc=bavier@posteo.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).