[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70489] [PATCH 30/47] gnu: Add python-assay.
From: |
Sharlatan Hellseher |
Subject: |
[bug#70489] [PATCH 30/47] gnu: Add python-assay. |
Date: |
Sun, 21 Apr 2024 00:22:19 +0100 |
* gnu/packages/python-check.scm (python-assay): New variable.
Change-Id: I0ec910d8c37000ff08119a33e3f42af2269fa494
---
gnu/packages/python-check.scm | 34 +++++++++++++++++++++++++++++++++-
1 file changed, 33 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 777791cb6c..6fdfaad6fb 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -9,7 +9,7 @@
;;; Copyright © 2020 Edouard Klein <edk@beaver-labs.com>
;;; Copyright © 2020, 2021 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
-;;; Copyright © 2021-2023 Sharlatan Hellseher <sharlatanus@gmail.com>
+;;; Copyright © 2021-2024 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
;;; Copyright © 2021, 2022 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
@@ -61,6 +61,38 @@ (define-module (gnu packages python-check)
#:use-module (guix packages)
#:use-module (guix utils))
+(define-public python-assay
+ ;; No release yet.
+ (let ((commit "74617d70e77afa09f58b3169cf496679ac5d5621")
+ (revision "0"))
+ (package
+ (name "python-assay")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/brandon-rhodes/assay")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1klxmamj88mn0q348r08zksccgsbch8sp0m4b04s3myrqnslp2nd"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags #~(list "-m" "assay.tests")
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? test-flags #:allow-other-keys)
+ (when tests?
+ (apply invoke "python" test-flags)))))))
+ (home-page "https://github.com/brandon-rhodes/assay")
+ (synopsis "Python testing framework")
+ (description
+ "This package provides opiniotated Python test framework prototype.")
+ (license license:expat))))
+
(define-public python-assertpy
(package
(name "python-assertpy")
--
2.41.0
- [bug#70489] [PATCH 19/47] gnu: python-stsci-imagestats: Update to 1.8.2., (continued)
- [bug#70489] [PATCH 19/47] gnu: python-stsci-imagestats: Update to 1.8.2., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 21/47] gnu: python-synphot: Add custom check phase., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 20/47] gnu: python-stsci-image: Refresh package style., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 22/47] gnu: python-synphot: Update to 1.4.0., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 23/47] gnu: python-tweakwcs: Adjust indentation., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 32/47] gnu: python-sunpy: Update to 5.1.2., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 27/47] gnu: python-gatspy: Refresh package style., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 33/47] gnu: python-astroplan: Update to 0.10., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 31/47] gnu: python-skyfield: Enable tests., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 34/47] gnu: python-rad: Update to 0.19.2., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 30/47] gnu: Add python-assay.,
Sharlatan Hellseher <=
- [bug#70489] [PATCH 37/47] gnu: python-casa-formats-io: Update to 0.3.0., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 24/47] gnu: python-tweakwcs: Update to 0.8.7., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 05/47] gnu: python-pytest-socket: Update to 0.7.0., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 26/47] gnu: python-ginga: Set HOME for sanity check., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 25/47] gnu: python-ginga: Update to 5.0.1., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 29/47] gnu: python-bayesicfitting: Update to 3.2.1., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 36/47] gnu: python-roman-datamodels: Update to 0.19.1., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 38/47] gnu: python-specutils: Update to 1.14.0., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 35/47] gnu: python-regions: Update to 0.9., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 39/47] gnu: python-photutils: Update to 1.12., Sharlatan Hellseher, 2024/04/20