python3Packages.tzdata: add setuptools to nativeBuildInputs

authored by Martin Weinelt and committed by Vladimír Čunát 1aba4df6 7b5db3fa

+5
+5
pkgs/development/python-modules/tzdata/default.nix
··· 5 , pytest-subtests 6 , pytestCheckHook 7 , pythonOlder 8 }: 9 10 buildPythonPackage rec { ··· 16 inherit pname version; 17 hash = "sha256-i1NqjsY9wHUTQrOYQZOjEY+Pyir+JXUrubf//TmFUtM="; 18 }; 19 20 checkInputs = [ 21 pytestCheckHook
··· 5 , pytest-subtests 6 , pytestCheckHook 7 , pythonOlder 8 + , setuptools 9 }: 10 11 buildPythonPackage rec { ··· 17 inherit pname version; 18 hash = "sha256-i1NqjsY9wHUTQrOYQZOjEY+Pyir+JXUrubf//TmFUtM="; 19 }; 20 + 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 24 25 checkInputs = [ 26 pytestCheckHook