python3Packages.simpleeval: add setuptools to nativeBuildInputs

This commit is contained in:
Martin Weinelt
2022-09-16 19:44:43 +02:00
committed by Frederik Rietdijk
parent cbcd8e2cc4
commit f58ad05a04
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
}:
@@ -16,6 +17,10 @@ buildPythonPackage rec {
sha256 = "0khgl729q5133fgc00d550f4r77707rkkn7r56az4v8bvx0q8xp4";
};
nativeBuildInputs = [
setuptools
];
checkInputs = [
pytestCheckHook
];