[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55060] [PATCH v3 5/6] gnu: Add python-scooby.
From: |
Paul A. Patience |
Subject: |
[bug#55060] [PATCH v3 5/6] gnu: Add python-scooby. |
Date: |
Mon, 25 Apr 2022 17:55:49 +0000 |
* gnu/packages/python-xyz.scm (python-scooby): New variable.
---
gnu/packages/python-xyz.scm | 67 +++++++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9a5d311680..1eeec2564e 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,69 @@ (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))
+ (propagated-inputs
+ (list python-psutil))
+ (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.*") "")
+ ;; The test suite expects an OSError when importing a missing
+ ;; module.
+ ;; However, a ModuleNotFoundError is thrown.
+ (("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 "Report hardware information and Python package versions")
+ (description
+ "The Scooby package reports the following information about the currently
+running system:
+
+@itemize
+@item operating system name;
+@item hardware information including machine type (e.g., @samp{i386},
+@samp{x86_64}, etc.), CPU count and total RAM;
+@item Python environment (e.g., Python, IPython, etc.);
+@item file system name;
+@item Python version;
+@item versions of specified Python packages.
+@end itemize
+
+It can generate reports as HTML tables or plain text lists.
+
+Scooby has no required dependencies, and only few optional dependencies.")
+ (license license:expat)))
--
2.35.1
- [bug#55060] [PATCH v2 4/6] gnu: python-meshio: Update to 5.3.4., (continued)
- [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 <=