3
0
Fork 0
forked from mirrors/nixpkgs

python/hooks/pythonNamespaces: fix __pycache__ logic

This commit is contained in:
Jonathan Ringer 2020-11-20 10:51:07 -08:00 committed by Jonathan Ringer
parent 95d9ff16f3
commit f5d9dd3050
2 changed files with 8 additions and 8 deletions

View file

@ -5,6 +5,7 @@
, disabledIf
, isPy3k
, ensureNewerSourcesForZipFilesHook
, findutils
}:
let
@ -94,7 +95,7 @@ in rec {
makeSetupHook {
name = "python-namespaces-hook.sh";
substitutions = {
inherit pythonSitePackages;
inherit pythonSitePackages findutils;
};
} ./python-namespaces-hook.sh) {};

View file

@ -17,17 +17,16 @@ pythonNamespacesHook() {
for pathSegment in ${pathSegments[@]}; do
constructedPath=${constructedPath}/${pathSegment}
pathToRemove=${constructedPath}/__init__.py
pycachePath=${constructedPath}/__pycache__/__init__*
pycachePath=${constructedPath}/__pycache__/
# remove __init__.py
if [ -f "$pathToRemove" ]; then
echo "Removing $pathToRemove"
rm "$pathToRemove"
rm -v "$pathToRemove"
fi
if [ -f "$pycachePath" ]; then
echo "Removing $pycachePath"
rm "$pycachePath"
fi
# remove __pycache__/ entry, can be interpreter specific. E.g. __init__.cpython-38.pyc
# use null characters to perserve potential whitespace in filepath
@findutils@/bin/find $pycachePath -name '__init__*' -print0 | xargs -0 rm -v
done
done