From c12ae518daa93427609bcf5831371860a7aae142 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Tue, 25 Feb 2025 11:37:54 +0100 Subject: [PATCH] gnu: python-docstring-to-markdown: Remove uneeded native-inputs. * gnu/packages/python-xyz.scm (python-docstring-to-markdown) [native-inputs]: Remove python-pytest-cov, python-pytest-flake8. [arguments]: Remove field. --- gnu/packages/python-xyz.scm | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 77760425eb2..f4918b97337 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3534,18 +3534,8 @@ variables into the markdown template.") (sha256 (base32 "0gdpabnyl1kyy0cjrnph6xl4fyhgim50a1amsaqq3hahki6i2ip1")))) (build-system pyproject-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'reduce-test-coverage-since-failing - (lambda _ - (substitute* "setup.cfg" - (("(^.*cov.*$|^.*flake8.*$)") ""))))))) (native-inputs (list python-pytest - python-pytest-cov - python-pytest-flake8 python-setuptools python-wheel)) (home-page "https://github.com/python-lsp/docstring-to-markdown")