c0972c16dc
nix is needed for nix-prefetch-url
14 lines
329 B
Nix
14 lines
329 B
Nix
{ python3, runCommand, git, nix }:
|
|
|
|
runCommand "update-python-libraries" {
|
|
buildInputs = [
|
|
nix
|
|
(python3.withPackages(ps: with ps; [ packaging requests toolz ]))
|
|
git
|
|
];
|
|
} ''
|
|
cp ${./update-python-libraries.py} $out
|
|
patchShebangs $out
|
|
substituteInPlace $out --replace 'GIT = "git"' 'GIT = "${git}/bin/git"'
|
|
''
|