summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-02-27 02:14:38 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-03 23:56:52 +0100
commit9926e12de6e110eb09cfce2138b9b3126f7c7131 (patch)
tree2343a581598267845da0b790f567b4abe1e5189e
parenta33ed03921192745450e89bb4803dab65f6e4889 (diff)
downloadnixpkgs-9926e12de6e110eb09cfce2138b9b3126f7c7131.tar
nixpkgs-9926e12de6e110eb09cfce2138b9b3126f7c7131.tar.gz
nixpkgs-9926e12de6e110eb09cfce2138b9b3126f7c7131.tar.bz2
nixpkgs-9926e12de6e110eb09cfce2138b9b3126f7c7131.tar.lz
nixpkgs-9926e12de6e110eb09cfce2138b9b3126f7c7131.tar.xz
nixpkgs-9926e12de6e110eb09cfce2138b9b3126f7c7131.tar.zst
nixpkgs-9926e12de6e110eb09cfce2138b9b3126f7c7131.zip
python3Packages.pygame: 2.1.2 -> 2.1.3
-rw-r--r--pkgs/development/python-modules/pygame/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pygame/default.nix b/pkgs/development/python-modules/pygame/default.nix
index 7155ec3778e..e465d856c8f 100644
--- a/pkgs/development/python-modules/pygame/default.nix
+++ b/pkgs/development/python-modules/pygame/default.nix
@@ -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";
   };