2018-11-24 12:56:24 +01:00
|
|
|
#!/bin/sh
|
2018-12-19 09:37:59 +01:00
|
|
|
build=`nix-build -E "with import (fetchTarball "channel:nixpkgs-unstable") {}; python3.withPackages(ps: with ps; [ packaging requests toolz ])"`
|
|
|
|
|
python=${build}/bin/python
|
|
|
|
|
exec ${python} pkgs/development/interpreters/python/update-python-libraries/update-python-libraries.py $@
|
2017-05-07 20:40:47 +02:00
|
|
|
|