gnu: python-debugpy: Reduce closure size.

As tests are disabled, remove all test related inputs and custom check
phase.

* gnu/packages/python-xyz.scm (python-debugpy) [arguments] <phases>: Do
  not overwrite 'check phase.
  [native-inputs]: Remove python-django, python-gevent, python-flask,
  python-psutil, python-pytest, python-pytest-cov,
  python-pytest-timeout, python-pytest-xdist, and python-requests

Change-Id: I1f6926f233990ecc99711da56075af66791c8f42
This commit is contained in:
Sharlatan Hellseher 2025-08-09 23:59:06 +01:00
parent 1b665fe289
commit 1597b1649d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -18938,7 +18938,7 @@ and other @acronym{IDEs, Integrated Development Environments}.")
(build-system pyproject-build-system) (build-system pyproject-build-system)
(arguments (arguments
(list (list
#:tests? #f ; Fail on systems with YAMA LSMs ptrace scope > 0. #:tests? #f ;FIXME: Fail on systems with YAMA LSMs ptrace scope > 0.
#:phases #:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-after 'unpack 'patch-sh-in-tests (add-after 'unpack 'patch-sh-in-tests
@ -18956,35 +18956,11 @@ and other @acronym{IDEs, Integrated Development Environments}.")
(lambda _ (lambda _
;; This adjusts the behavior of debugpy to load pydevd from ;; This adjusts the behavior of debugpy to load pydevd from
;; Python site packages. ;; Python site packages.
(setenv "DEBUGPY_BUNDLING_DISABLED" "1"))) (setenv "DEBUGPY_BUNDLING_DISABLED" "1"))))))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv"
"-n" (number->string (parallel-job-count))
"-k"
(string-append
;; These tests cannot be run in parallel because their
;; test data would not be copied by xdist and lead to
;; import errors. (see:
;; https://github.com/microsoft/debugpy/issues/342 and
;; https://github.com/microsoft/debugpy/issues/880).
"not test_custom_python_args "
"and not test_autokill "))))))))
(native-inputs (native-inputs
;; See: https://raw.githubusercontent.com/microsoft/debugpy/ (list python-setuptools))
;; main/tests/requirements.txt. (propagated-inputs
(list python-django (list python-pydevd))
python-gevent
python-flask
python-psutil
python-pytest
python-pytest-cov
python-pytest-timeout
python-pytest-xdist
python-requests
python-setuptools))
(propagated-inputs (list python-pydevd))
(home-page "https://aka.ms/debugpy") (home-page "https://aka.ms/debugpy")
(synopsis "Debug Adapter Protocol Python implementation") (synopsis "Debug Adapter Protocol Python implementation")
(description "An implementation of the Debug Adapter Protocol for (description "An implementation of the Debug Adapter Protocol for