diff --git a/pkgs/applications/networking/maestral-qt/default.nix b/pkgs/applications/networking/maestral-qt/default.nix index 2f0f3bd74ff..9b87073f3f4 100644 --- a/pkgs/applications/networking/maestral-qt/default.nix +++ b/pkgs/applications/networking/maestral-qt/default.nix @@ -2,6 +2,7 @@ , fetchFromGitHub , python3 , wrapQtAppsHook +, nixosTests }: python3.pkgs.buildPythonApplication rec { @@ -44,6 +45,8 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "maestral_qt" ]; + passthru.tests.maestral = nixosTests.maestral; + meta = with lib; { description = "GUI front-end for maestral (an open-source Dropbox client) for Linux"; license = licenses.mit; diff --git a/pkgs/development/python-modules/maestral/default.nix b/pkgs/development/python-modules/maestral/default.nix index ccbd70ff48e..63cb8db5fd4 100644 --- a/pkgs/development/python-modules/maestral/default.nix +++ b/pkgs/development/python-modules/maestral/default.nix @@ -3,9 +3,23 @@ , fetchFromGitHub , pythonOlder , python -, click, desktop-notifier, dropbox, fasteners, keyring, keyrings-alt, packaging, pathspec, Pyro5, requests, setuptools, sdnotify, survey, watchdog +, click +, desktop-notifier +, dropbox +, fasteners +, keyring +, keyrings-alt +, packaging +, pathspec +, Pyro5 +, requests +, setuptools +, sdnotify +, survey +, watchdog , importlib-metadata , pytestCheckHook +, nixosTests }: buildPythonPackage rec { @@ -66,6 +80,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "maestral" ]; + passthru.tests.maestral = nixosTests.maestral; + meta = with lib; { description = "Open-source Dropbox client for macOS and Linux"; license = licenses.mit;