summary refs log tree commit diff
path: root/pkgs/applications/networking/maestral-qt
diff options
context:
space:
mode:
authorStefan Frijters <sfrijters@gmail.com>2020-12-08 16:32:04 +0100
committerStefan Frijters <sfrijters@gmail.com>2020-12-09 10:44:47 +0100
commitc326458b4069a1ada8d9ae3efaf818a786d4f467 (patch)
tree84b82d0a0f7935da16ac878d31f741a31f3a7c94 /pkgs/applications/networking/maestral-qt
parentcedb9654c47a9af415dc3e786e1fd032685345a6 (diff)
maestral-qt: 1.2.1 -> 1.3.0
Diffstat (limited to 'pkgs/applications/networking/maestral-qt')
-rw-r--r--pkgs/applications/networking/maestral-qt/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/networking/maestral-qt/default.nix b/pkgs/applications/networking/maestral-qt/default.nix
index d4cfd38c50dcb..7602d59c0abbe 100644
--- a/pkgs/applications/networking/maestral-qt/default.nix
+++ b/pkgs/applications/networking/maestral-qt/default.nix
@@ -7,14 +7,14 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "maestral-qt";
-  version = "1.2.1";
+  version = "1.3.0";
   disabled = python3.pkgs.pythonOlder "3.6";
 
   src = fetchFromGitHub {
     owner = "SamSchott";
     repo = "maestral-qt";
     rev = "v${version}";
-    sha256 = "sha256-7qpVyQUbT+GChJl1TnKOONSyRDvzQ0M2z9RdN7PNl9U=";
+    sha256 = "sha256-WkjSIsr048b9iskjx6H36Jmvb+QtUmpW7JsYeVeXnhE=";
   };
 
   propagatedBuildInputs = with python3.pkgs; [
@@ -24,6 +24,8 @@ python3.pkgs.buildPythonApplication rec {
     maestral
     packaging
     pyqt5
+  ] ++ stdenv.lib.optionals (pythonOlder "3.9") [
+    importlib-resources
   ];
 
   nativeBuildInputs = [ wrapQtAppsHook ];