7 lines
211 B
Text
7 lines
211 B
Text
|
#!/bin/sh
|
||
|
set -x
|
||
|
build=`nix-build -E "with import <nixpkgs> {}; python3.withPackages(ps: with ps; [ packaging requests toolz ])"`
|
||
|
python=${build}/bin/python
|
||
|
exec ${python} scripts/update-python-libraries.py $@
|
||
|
|