python3Packages.pygame: 2.1.2 -> 2.1.3

This commit is contained in:
Martin Weinelt 2023-02-27 02:14:38 +01:00
parent a33ed03921
commit 9926e12de6

View File

@ -6,16 +6,16 @@
buildPythonPackage rec {
pname = "pygame";
version = "2.1.2";
version = "2.1.3";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
rev = "refs/tags/${version}";
# 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-v1z6caEMJNXqbcbTmFXoy3KQewHiz6qK4vhNU6Qbukk=";
sha256 = "sha256-CST51mTFytCAubx69nie6Vu99DRIVUEW6uTPa4APcTE=";
postFetch = "rm -rf $out/docs/reST";
};