mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00

We should not be setting pre/post phases as it's counter intuitive when working with overrides.
25 lines
476 B
Nix
25 lines
476 B
Nix
{ python
|
|
, callPackage
|
|
, makeSetupHook
|
|
, yj
|
|
}:
|
|
|
|
let
|
|
pythonInterpreter = python.pythonForBuild.interpreter;
|
|
in
|
|
{
|
|
|
|
removePathDependenciesHook = callPackage (
|
|
{}:
|
|
makeSetupHook {
|
|
name = "remove-path-dependencies.sh";
|
|
deps = [];
|
|
substitutions = {
|
|
inherit pythonInterpreter;
|
|
yj = "${yj}/bin/yj";
|
|
pyprojectPatchScript = "${./pyproject-without-path.py}";
|
|
};
|
|
} ./remove-path-dependencies.sh
|
|
) {};
|
|
|
|
}
|