python3Packages.pygame: fix source hash on HFS+ filesystems (#145986)

This commit is contained in:
Thomas 2021-11-14 15:28:28 -06:00 committed by GitHub
parent 9a65a60a20
commit fa0761a7c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,11 @@ buildPythonPackage rec {
owner = pname;
repo = pname;
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 = [