guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 617250d96bf6526790f9511b73260b3e10356894
Author: Vinicius Monego <[email protected]>
AuthorDate: Sat Aug 2 12:29:25 2025 -0300
gnu: python-safety: Update to 3.6.0.
* gnu/packages/python-xyz.scm (python-safety): Update to 3.6.0.
[build-system]: Use pyproject-build-system.
[arguments]<#:test-flags>: Skip failing tests.
<#:phases>: Delete the 'disable-tests' phase. Add phase
'set-home' before 'check'.
[native-inputs]: Add nss-certs-for-test, python-hatchling,
python-pytest.
[propagated-inputs]: Add python-authlib, python-filelock, python-httpx,
python-jinja2, python-marshmallow, python-nltk, python-psutil,
python-pydantic-2, python-ruamel.yaml, python-safety-schemas,
python-tenacity, python-tomli, python-tomlkit, python-typer,
python-typing-extensions.
Change-Id: I96ea41399f5b0068b7fe5d1816dda16e7be18c75
---
gnu/packages/python-xyz.scm | 49 ++++++++++++++++++++++++++++++++++-----------
1 file changed, 37 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 36869c5d19..e7b3b98c96 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34365,24 +34365,49 @@ facility for filtering those results.")
(define-public python-safety
(package
(name "python-safety")
- (version "1.9.0")
+ (version "3.6.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "safety" version))
(sha256
- (base32 "1j801xsxfzavjbzhhc934awvnk1b7jc0qsw3jp3ys0241mlj1gr3"))))
- (build-system python-build-system)
+ (base32 "1qzplv044yfr8w41h0qmjc8lj2admk029azsqbax70wzd4kzh858"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:phases (modify-phases %standard-phases
- (add-after 'unpack 'disable-tests
- (lambda _
- (substitute* "tests/test_safety.py"
- ;; requires network
- (("def test_check_live")
- "def _test_check_live")) #t)))))
- (propagated-inputs (list python-click python-dparse python-packaging
- python-requests))
+ (list
+ #:test-flags
+ #~(list "-k" (string-join
+ ;; test_announcements fails with AssertionError.
+ (list "not test_announcements_if_is_not_tty"
+ ;; Tests below need a network connection.
+ "test_check_live"
+ "test_check_live_cached"
+ "test_get_packages_licenses_without_api_key")
+ " and not "))
+ #:phases #~(modify-phases %standard-phases
+ (add-before 'check 'set-home ; some tests run mkdir
+ (lambda _
+ (setenv "HOME" "/tmp"))))))
+ (native-inputs (list nss-certs-for-test python-hatchling python-pytest))
+ (propagated-inputs (list python-authlib
+ python-click
+ python-dparse
+ python-filelock
+ python-httpx
+ python-jinja2
+ python-marshmallow
+ python-nltk
+ python-packaging
+ python-psutil
+ python-pydantic-2
+ python-requests
+ python-ruamel.yaml
+ python-safety-schemas
+ python-tenacity
+ python-tomli
+ python-tomlkit
+ python-typer
+ python-typing-extensions))
(home-page "https://github.com/pyupio/safety")
(synopsis "Check installed dependencies for known vulnerabilities")
(description