From c0972c16dcbdce1b7505751e1ce537142071bb15 Mon Sep 17 00:00:00 2001 From: Ryan Mulligan Date: Sat, 13 Aug 2022 11:59:14 -0700 Subject: [PATCH] update-python-libraries: add missing dependency nix nix is needed for nix-prefetch-url --- .../interpreters/python/update-python-libraries/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/update-python-libraries/default.nix b/pkgs/development/interpreters/python/update-python-libraries/default.nix index 81975bc5250e..497799e0a2af 100644 --- a/pkgs/development/interpreters/python/update-python-libraries/default.nix +++ b/pkgs/development/interpreters/python/update-python-libraries/default.nix @@ -1,7 +1,8 @@ -{ python3, runCommand, git }: +{ python3, runCommand, git, nix }: runCommand "update-python-libraries" { buildInputs = [ + nix (python3.withPackages(ps: with ps; [ packaging requests toolz ])) git ];