python310Packages.scapy: remove coverage,tox dependency

This commit is contained in:
Sandro Jäckel
2022-11-16 00:21:12 +01:00
parent e4d99ffc58
commit 1f19974ab6
@@ -1,6 +1,6 @@
{ buildPythonPackage, fetchFromGitHub, stdenv, lib, isPyPy
, pycrypto, ecdsa # TODO
, tox, mock, coverage, can, brotli
, mock, can, brotli
, withOptionalDeps ? true, tcpdump, ipython
, withCryptography ? true, cryptography
, withVoipSupport ? true, sox
@@ -52,8 +52,9 @@ buildPythonPackage rec {
# Running the tests seems too complicated:
doCheck = false;
checkInputs = [ tox mock coverage can brotli ];
checkInputs = [ mock can brotli ];
checkPhase = ''
# TODO: be more specific about files
patchShebangs .
.config/ci/test.sh
'';