tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pygame-gui: 0.6.4 -> 064
Martin Weinelt
3 years ago
f4011818
baa63060
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pygame-gui
default.nix
+3
-3
pkgs/development/python-modules/pygame-gui/default.nix
reviewed
···
9
9
10
10
buildPythonPackage rec {
11
11
pname = "pygame-gui";
12
12
-
version = "0.6.4";
12
12
+
version = "064";
13
13
# nixpkgs-update: no auto update
14
14
15
15
src = fetchFromGitHub {
16
16
owner = "MyreMylar";
17
17
repo = "pygame_gui";
18
18
-
rev = "v_${lib.replaceStrings ["."] [""] version}";
19
19
-
sha256 = "13+fK1hYxiMh0T+xbbmHViZjyBoQfRyIDc05fIJ/46U=";
18
18
+
rev = "refs/tags/v_${version}";
19
19
+
sha256 = "sha256-13+fK1hYxiMh0T+xbbmHViZjyBoQfRyIDc05fIJ/46U=";
20
20
};
21
21
22
22
propagatedBuildInputs = [ pygame python-i18n ];