python3Packages.pluggy: use pyproject format

This commit is contained in:
Martin Weinelt 2022-09-16 14:01:36 +02:00
parent 39feebbf61
commit e7cf8da2d0

View file

@ -9,25 +9,22 @@
buildPythonPackage rec {
pname = "pluggy";
version = "1.0.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159";
};
checkPhase = ''
py.test
'';
# To prevent infinite recursion with pytest
doCheck = false;
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
# To prevent infinite recursion with pytest
doCheck = false;
meta = {
description = "Plugin and hook calling mechanisms for Python";
homepage = "https://github.com/pytest-dev/pluggy";