lol

python3.pkgs.zimports: add missing setuptools (#90026)

Co-authored-by: Jon <jonringer@users.noreply.github.com>

authored by

Jörg Thalheim
Jon
and committed by
GitHub
db7e2b48 b5dc9f6b

+8
+8
pkgs/development/python-modules/zimports/default.nix
··· 5 5 , flake8-import-order 6 6 , pyflakes 7 7 , mock 8 + , setuptools 8 9 }: 9 10 10 11 buildPythonPackage rec { ··· 23 24 propagatedBuildInputs = [ 24 25 pyflakes 25 26 flake8-import-order 27 + setuptools 26 28 ]; 27 29 28 30 checkInputs = [ 29 31 mock 30 32 ]; 33 + 34 + checkPhase = '' 35 + runHook preInstallCheck 36 + PYTHONPATH= $out/bin/zimports --help >/dev/null 37 + runHook postInstallCheck 38 + ''; 31 39 32 40 meta = with lib; { 33 41 description = "Python import rewriter";