python310Packages.parts: add setuptools to nativeBuildInputs

This commit is contained in:
Sandro Jäckel 2022-09-15 23:09:32 +02:00 committed by Frederik Rietdijk
parent 7ea64155e7
commit 46445f00a9

View File

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -16,6 +17,10 @@ buildPythonPackage rec {
hash = "sha256-gOPDqXF05bQcG0Kv0+akBrikRr/CfHB9/tM/TJDPHdM="; hash = "sha256-gOPDqXF05bQcG0Kv0+akBrikRr/CfHB9/tM/TJDPHdM=";
}; };
nativeBuildInputs = [
setuptools
];
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;