python3Packages.simpleeval: add setuptools to nativeBuildInputs

authored by

Martin Weinelt and committed by
Frederik Rietdijk
f58ad05a cbcd8e2c

+5
+5
pkgs/development/python-modules/simpleeval/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , setuptools 4 5 , pytestCheckHook 5 6 }: 6 7 ··· 15 16 rev = version; 16 17 sha256 = "0khgl729q5133fgc00d550f4r77707rkkn7r56az4v8bvx0q8xp4"; 17 18 }; 19 + 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 18 23 19 24 checkInputs = [ 20 25 pytestCheckHook