nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, fetchFromSourcehut, python3Packages }:
2
3python3Packages.buildPythonApplication rec {
4 pname = "brutalmaze";
5 version = "1.1.1";
6 format = "flit";
7 disabled = python3Packages.pythonOlder "3.7";
8
9 src = fetchFromSourcehut {
10 owner = "~cnx";
11 repo = pname;
12 rev = version;
13 sha256 = "1m105iq378mypj64syw59aldbm6bj4ma4ynhc50gafl656fabg4y";
14 };
15
16 propagatedBuildInputs = with python3Packages; [
17 loca
18 palace
19 pygame
20 ];
21
22 doCheck = false; # there's no test
23
24 meta = with lib; {
25 description = "Minimalist thrilling shoot 'em up game";
26 homepage = "https://brutalmaze.rtfd.io";
27 license = licenses.agpl3Plus;
28 maintainers = [ maintainers.McSinyx ];
29 };
30}