python3Packages.coverage: update python compatibility

This commit is contained in:
Jonathan Ringer 2022-01-17 21:33:10 -08:00 committed by Martin Weinelt
parent 4a29f7b6fb
commit c7e34c25b9

View file

@ -2,11 +2,14 @@
, buildPythonPackage
, fetchPypi
, mock
, pythonOlder
}:
buildPythonPackage rec {
pname = "coverage";
version = "6.2";
# uses f strings
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;