python3Packages.pytest-test-utils: add setuptools to nativeBuildInputs

This commit is contained in:
Martin Weinelt 2022-09-16 15:22:03 +02:00 committed by Frederik Rietdijk
parent a7854ae932
commit f0327dffbe

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
, pytest
, pythonOlder
@ -20,6 +21,10 @@ buildPythonPackage rec {
hash = "sha256-5gB+hnJR2+NQd/n7RGrX1bzfKt8Np7IbWw61SZgNVJY=";
};
nativeBuildInputs = [
setuptools
];
buildInputs = [
pytest
];