mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03: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 $@
|
|
|