[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55060] [PATCH v2 5/6] gnu: Add python-scooby.
From: |
Paul A. Patience |
Subject: |
[bug#55060] [PATCH v2 5/6] gnu: Add python-scooby. |
Date: |
Fri, 22 Apr 2022 12:41:54 +0000 |
* gnu/packages/python-xyz.scm (python-scooby): New variable.
---
gnu/packages/python-xyz.scm | 48 +++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9a5d311680..3a49f46555 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -119,6 +119,7 @@
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
;;; Copyright © 2022 drozdov <drozdov@portalenergy.tech>
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
+;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -29534,3 +29535,50 @@ (define-public python-sre-yield
uses the parsed regular expression, so you get a much more accurate result
than trying to just split strings.")
(license license:asl2.0)))
+
+(define-public python-scooby
+ (package
+ (name "python-scooby")
+ (version "0.5.12")
+ (source
+ ;; The PyPI tarball does not contain the tests.
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/banesullivan/scooby")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1gkpmz8wl3jg8ylf1na35308sznw2g9wx33zqlyq5i2gpy2ml9mw"))))
+ (build-system python-build-system)
+ (native-inputs
+ (list python-beautifulsoup4
+ python-numpy
+ python-pytest
+ python-pytest-cov
+ python-scipy))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-tests
+ (lambda _
+ (substitute* "tests/test_scooby.py"
+ ;; The test suite uses the no-version PyPI package
+ ;; (https://pypi.org/project/no-version/),
+ ;; but it doesn't seem worth packaging in Guix just for this.
+ (("scooby\\.report\\.VERSION_NOT_FOUND")
+ "scooby.report.MODULE_NOT_FOUND")
+ (("^ +import no_version # noqa.*") "")
+ (("with pytest\\.raises\\(OSError\\):")
+ "with pytest.raises(ModuleNotFoundError):"))))
+ (replace 'check
+ (lambda* (#:key tests? inputs outputs #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (invoke "pytest")))))))
+ (home-page "https://github.com/banesullivan/scooby")
+ (synopsis "Great Dane turned Python environment detective")
+ (description
+ "This is a lightweight tool for easily reporting your Python
+environment's package versions and hardware resources.")
+ (license license:expat)))
--
2.35.1
- [bug#55060] [PATCH 5/6] gnu: Add python-scooby., (continued)
[bug#55060] [PATCH v2 0/6] gnu: Add python-pyvista., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 1/6] gnu: python-meshio: Remove input labels., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 2/6] gnu: python-meshio: Remove trailing booleans., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 3/6] gnu: python-meshio: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 4/6] gnu: python-meshio: Update to 5.3.4., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 5/6] gnu: Add python-scooby.,
Paul A. Patience <=
- [bug#55060] [PATCH v2 6/6] gnu: Add python-pyvista., Paul A. Patience, 2022/04/22
[bug#55060] [PATCH v3 0/6] gnu: Add python-pyvista., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 1/6] gnu: python-meshio: Remove input labels., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 2/6] gnu: python-meshio: Remove trailing booleans., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 4/6] gnu: python-meshio: Update to 5.3.4., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 3/6] gnu: python-meshio: Honor #:tests? flag., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 6/6] gnu: Add python-pyvista., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 5/6] gnu: Add python-scooby., Paul A. Patience, 2022/04/25