Commit c0972c16 authored by Ryan Mulligan's avatar Ryan Mulligan Committed by Alyssa Ross
Browse files

update-python-libraries: add missing dependency nix

nix is needed for nix-prefetch-url
parent ed0eeef6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
{ python3, runCommand, git }:
{ python3, runCommand, git, nix }:

runCommand "update-python-libraries" {
  buildInputs = [
    nix
    (python3.withPackages(ps: with ps; [ packaging requests toolz ]))
    git
  ];