python2Packages.coverage: drop

This commit is contained in:
Sigmanificient
2026-01-15 01:38:29 +01:00
parent 123a634629
commit 6193741371
3 changed files with 1 additions and 30 deletions
@@ -1,27 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
mock,
}:
buildPythonPackage rec {
pname = "coverage";
version = "5.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c";
};
# No tests in archive
doCheck = false;
nativeCheckInputs = [ mock ];
meta = {
description = "Code coverage measurement for python";
homepage = "https://coverage.readthedocs.io/";
license = lib.licenses.bsd3;
};
}
@@ -3,7 +3,6 @@
buildPythonPackage,
fetchFromGitHub,
attrs,
coverage,
pexpect,
doCheck ? true,
pytest,
@@ -34,7 +33,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [
attrs
coverage
sortedcontainers
];