about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/poetry2nix/poetry2nix/hooks/remove-path-dependencies.sh
blob: b22a05900a05f119fa3d529290297b6380d5db8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
remove-path-dependencies-hook() {
    if ! test -f pyproject.toml; then
        return
    fi

    # Tell poetry not to resolve the path dependencies. Any version is fine!
    @yj@ -tj < pyproject.toml | @pythonInterpreter@ @pyprojectPatchScript@ > pyproject.json
    @yj@ -jt < pyproject.json > pyproject.toml
    rm pyproject.json
}

postPatchHooks+=(remove-path-dependencies-hook)