about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorEduardo QuirĂ³s <39096810+equirosa@users.noreply.github.com>2021-01-31 13:00:23 -0600
committerGitHub <noreply@github.com>2021-01-31 20:00:23 +0100
commit66bf902d5950231385e0caffca44090903dd63f0 (patch)
treec5f4ebc89dbb0476e5661b5a4283f1784ab7cfa2 /pkgs/games
parent66c11c1380d31f68077cf7603819812f43951695 (diff)
downloadnixlib-66bf902d5950231385e0caffca44090903dd63f0.tar
nixlib-66bf902d5950231385e0caffca44090903dd63f0.tar.gz
nixlib-66bf902d5950231385e0caffca44090903dd63f0.tar.bz2
nixlib-66bf902d5950231385e0caffca44090903dd63f0.tar.lz
nixlib-66bf902d5950231385e0caffca44090903dd63f0.tar.xz
nixlib-66bf902d5950231385e0caffca44090903dd63f0.tar.zst
nixlib-66bf902d5950231385e0caffca44090903dd63f0.zip
legendary-gl: 0.20.1 -> 0.20.6 (#110823)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/legendary-gl/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/games/legendary-gl/default.nix b/pkgs/games/legendary-gl/default.nix
index edf8b853c3c6..10fab4915aa1 100644
--- a/pkgs/games/legendary-gl/default.nix
+++ b/pkgs/games/legendary-gl/default.nix
@@ -7,23 +7,28 @@
 
 buildPythonApplication rec {
   pname = "legendary-gl"; # Name in pypi
-  version = "0.20.1";
+  version = "0.20.6";
 
   src = fetchFromGitHub {
     owner = "derrod";
     repo = "legendary";
     rev = version;
-    sha256 = "0kdrhdvh9gxq1zinh5w852f5fjls9902pcrkhkhm2c0vvq7jfass";
+    sha256 = "1v6jbnasz2ilcafs6qyl6na4a8cxy2lgwr0hqsja6d846rfqa8ad";
   };
 
   propagatedBuildInputs = [ requests ];
 
   disabled = pythonOlder "3.8";
 
+  # no tests
+  doCheck = false;
+
+  pythonImportsCheck = [ "legendary" ];
+
   meta = with lib; {
     description = "A free and open-source Epic Games Launcher alternative";
     homepage = "https://github.com/derrod/legendary";
     license = licenses.gpl3;
-    maintainers = with maintainers; [ wchresta ];
+    maintainers = with maintainers; [ wchresta equirosa ];
   };
 }