python3Packages.pygame: fix source hash on HFS+ filesystems (#145986)
This commit is contained in:
parent
9a65a60a20
commit
fa0761a7c6
1 changed files with 5 additions and 1 deletions
|
@ -11,7 +11,11 @@ buildPythonPackage rec {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "GrfNaowlD2L5umiFwj7DgtHGBg9a4WVfe3RlMjK3ElU=";
|
# Unicode file names lead to different checksums on HFS+ vs. other
|
||||||
|
# filesystems because of unicode normalisation. The documentation
|
||||||
|
# has such files and will be removed.
|
||||||
|
sha256 = "sha256-Pe7BJ+8rXw+hhRv64fI+79gJcU1npQFFAXxECx2+Trw=";
|
||||||
|
extraPostFetch = "rm -rf $out/docs/reST";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
Loading…
Reference in a new issue