python39Packages.zipp: update meta, remove unused checkInputs

tests are not run anyway
This commit is contained in:
Sandro Jäckel 2021-08-27 02:28:05 +02:00 committed by Martin Weinelt
parent ab126c9a62
commit 899b703f19

View File

@ -2,8 +2,6 @@
, buildPythonPackage
, fetchPypi
, setuptools-scm
, pytest
, pytest-flake8
, more-itertools
}:
@ -20,12 +18,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [ more-itertools ];
checkInputs = [ pytest pytest-flake8 ];
checkPhase = ''
pytest
'';
# Prevent infinite recursion with pytest
doCheck = false;
@ -33,5 +25,6 @@ buildPythonPackage rec {
description = "Pathlib-compatible object wrapper for zip files";
homepage = "https://github.com/jaraco/zipp";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}