about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/poetry/update
blob: 68a60b8c874ddc220def49775e4538d3a25e6d03 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env nix-shell
#! nix-shell -i bash -p curl nix-prefetch-github

rev=$(curl -s https://api.github.com/repos/python-poetry/poetry/releases/latest | jq -r '.name')
nix-prefetch-github --rev "$rev" python-poetry poetry > src.json

src=$(nix-build --expr 'with import ../../../../. {}; fetchFromGitHub (lib.importJSON ./src.json)')
cp $src/pyproject.toml $src/poetry.lock .
nix-build --show-trace --no-out-link ../../../../. -A poetry