poetry2nix/hooks/fixup-hook.sh
adisbladis 090e2dd957
Add fixup hook
This hook should fix common mistakes like installing `tests` in
site-packages which leads to collisions.
2020-02-28 19:45:23 +00:00

8 lines
227 B
Bash

poetry2nix-fixup-hook() {
# Including tests in the output is a common mistake
if [ -z "${dontFixupTests-}" ]; then
rm -rf $out/lib/python3.7/site-packages/tests
fi
}
postFixupHooks+=(poetry2nix-fixup-hook)