mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
6 lines
289 B
Bash
Executable file
6 lines
289 B
Bash
Executable file
#!/bin/sh
|
|
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 $@
|
|
|