update-python-libraries: add missing dependency nix

nix is needed for nix-prefetch-url
This commit is contained in:
Ryan Mulligan 2022-08-13 11:59:14 -07:00 committed by Alyssa Ross
parent ed0eeef636
commit c0972c16dc

View file

@ -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
];