python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / brutalmaze / default.nix
blobd9c904d99a3b618de2a72660b97c3f3e56ea6605
1 { lib, fetchFromSourcehut, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "brutalmaze";
5   version = "1.1.1";
6   format = "flit";
7   disabled = python3Packages.pythonOlder "3.7";
9   src = fetchFromSourcehut {
10     owner = "~cnx";
11     repo = pname;
12     rev = version;
13     sha256 = "1m105iq378mypj64syw59aldbm6bj4ma4ynhc50gafl656fabg4y";
14   };
16   propagatedBuildInputs = with python3Packages; [
17     loca
18     palace
19     pygame
20   ];
22   doCheck = false; # there's no test
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   };