PropagatedBuild inputs workaround

This commit is contained in:
Johannes Kirschbauer
2024-07-26 15:23:25 +02:00
parent d7b6fc16a4
commit 7a3fad01e0
7 changed files with 35 additions and 8 deletions

View File

@@ -30,7 +30,7 @@
let
pythonDependencies = [
argcomplete # Enables shell completions
pydantic
pydantic # Dataclass deserialisation / validation / schemas
];
# load nixpkgs runtime dependencies from a json file
@@ -183,6 +183,7 @@ python3.pkgs.buildPythonApplication {
'';
# Clean up after the package to avoid leaking python packages into a devshell
# TODO: factor seperate cli / API packages
postFixup = ''
rm $out/nix-support/propagated-build-inputs
'';