mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
706cae6532
Previously when packages that required the git fetcher were updated, we would wrongly rely on `nix-prefetch-url`, which would reliable break the hash. Instead we need to use `nix-prefetch-git` to determine the proper hash, when the relevant attributes are present.
4 lines
269 B
Plaintext
Executable File
4 lines
269 B
Plaintext
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -I nixpkgs=channel:nixpkgs-unstable -i bash -p "python3.withPackages (ps: with ps; [ packaging requests ])" -p nix-prefetch-git
|
|
exec python3 pkgs/development/interpreters/python/update-python-libraries/update-python-libraries.py $@
|