python3Packages.archinfo: add missing setuptools dependency

This commit is contained in:
Frederik Rietdijk 2022-09-16 10:33:03 +02:00
parent 53614025a9
commit 40d2962259

View File

@ -3,6 +3,7 @@
, fetchFromGitHub , fetchFromGitHub
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -19,6 +20,10 @@ buildPythonPackage rec {
hash = "sha256-K9EAyCvwgWhiZ+rkPKPGBr3lWYIIRCf0FAzPjIjrcU8="; hash = "sha256-K9EAyCvwgWhiZ+rkPKPGBr3lWYIIRCf0FAzPjIjrcU8=";
}; };
nativeBuildInputs = [
setuptools
];
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
]; ];