summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-01-31 00:05:30 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:35 +0100
commit015bc199ef39310330f97b972a9d0058296766a6 (patch)
tree7b7522ba15fed9b4222c6a37d3624fb8904a1a39 /gnu/packages
parent6f6c88d72c89613a1ea02d6ba6596e56c64326f1 (diff)
gnu: Remove python-flake8 native-input from some packages.
Remove python-flake8 from [native-inputs] in the following packages as not required for build/tests/install: * gnu/packages/bioinformatics.scm: (python-doubletdetection) * gnu/packages/ebook.scm: (calibre) * gnu/packages/graph.scm: (python-pygsp) * gnu/packages/machine-learning.scm: (python-pymanopt, python-pyro-api) * gnu/packages/python-web.scm: (python-furl) * gnu/packages/python-xyz.scm: (python-jinja2-cli) * gnu/packages/simulation.scm: (python-dolfin-adjoint) * gnu/packages/vpn.scm: (sshuttle) * gnu/packages/music.scm (python-mutagen): [arguments]<#:test-flags>: Ignore flake8 quality tests. [native-inputs]: Remove python-flake8. Change-Id: I2789b8711faf3aa60a4bfa2062f95616e216d6c3 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/bioinformatics.scm3
-rw-r--r--gnu/packages/ebook.scm1
-rw-r--r--gnu/packages/machine-learning.scm4
-rw-r--r--gnu/packages/music.scm4
-rw-r--r--gnu/packages/python-web.scm2
-rw-r--r--gnu/packages/python-xyz.scm3
-rw-r--r--gnu/packages/simulation.scm1
-rw-r--r--gnu/packages/vpn.scm1
8 files changed, 6 insertions, 13 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 0e2cb9c4353..95e226b92f1 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2899,8 +2899,7 @@ demultiplexing step.")
python-scipy
python-tqdm))
(native-inputs
- (list python-flake8
- python-poetry-core
+ (list python-poetry-core
python-pytest))
(home-page "https://github.com/JonathanShor/DoubletDetection")
(synopsis
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index 31102eaa5b4..9b338792745 100644
--- a/gnu/packages/ebook.scm
+++ b/gnu/packages/ebook.scm
@@ -173,7 +173,6 @@ with Microsoft Compiled HTML (CHM) files.")
(list bash-minimal
cmake
pkg-config
- python-flake8
python-pyqt-builder
qtbase ; for qmake
xdg-utils
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index 664cbfb5d75..3aa93c94436 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -1597,7 +1597,6 @@ learning.")
((",!=1.12\\.\\*") "")))))))
(propagated-inputs (list python-numpy python-scipy))
(native-inputs (list python-autograd
- python-flake8
python-flake8-bugbear
python-isort
python-matplotlib
@@ -6465,8 +6464,7 @@ and Numpy.")
(build-system pyproject-build-system)
(arguments '(#:tests? #false)) ;requires pyro
(native-inputs
- (list python-flake8
- python-ipython
+ (list python-ipython
python-pytest
python-setuptools
python-sphinx
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index f22bc7c6f3d..ef143270f7a 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -4062,6 +4062,7 @@ formats, looking up tracks through metadata and audio fingerprints.")
(build-system pyproject-build-system)
(arguments
(list
+ #:test-flags '(list "--ignore=tests/quality/test_flake8.py")
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'remove-hypothesis-deadlines
@@ -4072,8 +4073,7 @@ formats, looking up tracks through metadata and audio fingerprints.")
(("( +)@given" all spaces)
(string-append spaces "@settings(deadline=None)\n" all))))))))
(native-inputs
- (list python-flake8
- python-hypothesis
+ (list python-hypothesis
python-pytest
python-setuptools
python-wheel))
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index eef6d01b44e..ff5571c3fb8 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3217,7 +3217,7 @@ origin than that of the web application.")
(propagated-inputs
(list python-orderedmultidict python-six))
(native-inputs
- (list python-flake8 python-pytest python-setuptools python-wheel))
+ (list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/gruns/furl")
(synopsis "URL manipulation in Python")
(description "Furl provides an easy-to-use alternative to the
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f2a8d06aa3f..01b55b39870 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32083,8 +32083,7 @@ Screenflick.")
(propagated-inputs
(list python-jinja2))
(native-inputs
- (list python-flake8
- python-jinja2
+ (list python-jinja2
python-pytest
python-setuptools
python-wheel))
diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm
index e228e13cee6..46ce486d4dc 100644
--- a/gnu/packages/simulation.scm
+++ b/gnu/packages/simulation.scm
@@ -1506,7 +1506,6 @@ counters and tunnels).")
(list pkg-config
python-coverage
python-decorator
- python-flake8
python-pkgconfig
python-pytest
python-setuptools
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 3359a1e6656..3dc46777c3d 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -1241,7 +1241,6 @@ private network between hosts on the internet.")
(native-inputs
(list python-setuptools-scm
;; For tests only.
- python-flake8
python-mock
python-poetry-core
python-pytest-cov