python310Packages.wheel-inspect: relax entry-points-txt constraint

This commit is contained in:
Fabian Affolter 2022-06-06 00:20:46 +02:00
parent 1c61372d39
commit f74ef9f98a

View File

@ -43,12 +43,19 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace tox.ini \
--replace " --cov=wheel_inspect --no-cov-on-fail" ""
substituteInPlace setup.cfg \
--replace "entry-points-txt ~= 0.1.0" "entry-points-txt >= 0.1.0"
'';
pythonImportsCheck = [
"wheel_inspect"
];
pytestFlagsArray = [
"-W"
"ignore::DeprecationWarning"
];
meta = with lib; {
description = "Extract information from wheels";
homepage = "https://github.com/jwodder/wheel-inspect";