2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, pythonPackages, installShellFiles }:
|
2017-05-04 16:11:36 +00:00
|
|
|
|
2017-12-31 13:13:21 +00:00
|
|
|
with pythonPackages;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
2019-07-01 03:18:56 +00:00
|
|
|
pname = "watson";
|
2020-07-19 11:24:42 +00:00
|
|
|
version = "1.10.0";
|
2017-05-04 16:11:36 +00:00
|
|
|
|
2020-06-07 19:08:38 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "TailorDev";
|
|
|
|
repo = "Watson";
|
|
|
|
rev = version;
|
2020-07-19 11:24:42 +00:00
|
|
|
sha256 = "1s0k86ldqky6avwjaxkw1y02wyf59qwqldcahy3lhjn1b5dgsb3s";
|
2017-05-04 16:11:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkPhase = ''
|
2019-07-01 03:20:13 +00:00
|
|
|
pytest -vs tests
|
2020-04-28 06:40:36 +00:00
|
|
|
'';
|
2017-12-31 13:13:21 +00:00
|
|
|
|
2020-04-28 06:46:48 +00:00
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --bash --name watson watson.completion
|
|
|
|
installShellCompletion --zsh --name _watson watson.zsh-completion
|
|
|
|
'';
|
|
|
|
|
2020-06-07 19:08:38 +00:00
|
|
|
checkInputs = [ py pytest pytest-datafiles pytest-mock pytestrunner ];
|
|
|
|
propagatedBuildInputs = [ arrow click click-didyoumean requests ];
|
2020-04-28 06:46:48 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2017-05-04 16:11:36 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://tailordev.github.io/Watson/";
|
2017-05-04 16:11:36 +00:00
|
|
|
description = "A wonderful CLI to track your time!";
|
|
|
|
license = licenses.mit;
|
2020-08-15 13:25:59 +00:00
|
|
|
maintainers = with maintainers; [ mguentner nathyong oxzi ];
|
2017-05-04 16:11:36 +00:00
|
|
|
};
|
2017-12-31 13:13:21 +00:00
|
|
|
}
|