maestral-qt: 1.2.1 -> 1.3.0

This commit is contained in:
Stefan Frijters 2020-12-08 16:32:04 +01:00
parent cedb9654c4
commit c326458b40
No known key found for this signature in database
GPG Key ID: 7619A6BC6E7DFA6F

View File

@ -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 ];