From 2bc4dcde870ebc37c784c13067ae0579153be8ba Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Tue, 31 May 2022 08:54:16 +0100 Subject: [PATCH] moz-phab: add missing 'pip' runtime dependency Without the change certificate installation fails as: $ moz-phab install-certificate ... Upgrading to version 1.0.0 ...-python3.9-setuptools-61.2.0/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. warnings.warn( ...-python3-3.9.12/bin/python3.9: No module named pip CommandError: command '...-python3-3.9.12/bin/python3.9' failed to complete successfully Run moz-phab again with '--trace' to show debugging output Closes: https://github.com/NixOS/nixpkgs/issues/174692 --- pkgs/applications/misc/moz-phab/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/moz-phab/default.nix b/pkgs/applications/misc/moz-phab/default.nix index 886e06a382bd..67b8f9e09312 100644 --- a/pkgs/applications/misc/moz-phab/default.nix +++ b/pkgs/applications/misc/moz-phab/default.nix @@ -5,6 +5,7 @@ # build inputs , distro , glean-sdk +, pip , python-hglib , sentry-sdk , setuptools @@ -30,6 +31,7 @@ buildPythonApplication rec { propagatedBuildInputs = [ distro glean-sdk + pip python-hglib sentry-sdk setuptools