python3Packages.multimethod: add setuptools to nativeBuildInputs

This commit is contained in:
Martin Weinelt 2022-09-18 03:27:57 +02:00 committed by Sandro Jäckel
parent 6bce590ab4
commit 7bdade5cde
No known key found for this signature in database
GPG key ID: B1763F8651144063

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
}:
@ -16,6 +17,10 @@ buildPythonPackage rec {
sha256 = "09vrxzv8q0lqsbh6d83wjdd29ja66rj31y7wmyha14jk603fd9k0";
};
nativeBuildInputs = [
setuptools
];
checkInputs = [
pytestCheckHook
];