2022-06-16 17:23:12 +00:00
|
|
|
{ lib, fetchFromGitHub, python3, installShellFiles, fetchpatch }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
with python3.pkgs;
|
2021-07-14 22:03:04 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "watson";
|
|
|
|
version = "2.1.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "TailorDev";
|
|
|
|
repo = "Watson";
|
|
|
|
rev = version;
|
2022-06-16 17:23:12 +00:00
|
|
|
sha256 = "sha256-/AASYeMkt18KPJljAjNPRYOpg/T5xuM10LJq4LrFD0g=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
patches = [
|
|
|
|
# https://github.com/TailorDev/Watson/pull/473
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-completion.patch";
|
|
|
|
url = "https://github.com/TailorDev/Watson/commit/43ad061a981eb401c161266f497e34df891a5038.patch";
|
|
|
|
sha256 = "sha256-v8/asP1wooHKjyy9XXB4Rtf6x+qmGDHpRoHEne/ZCxc=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2020-05-03 17:38:23 +00:00
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --bash --name watson watson.completion
|
|
|
|
installShellCompletion --zsh --name _watson watson.zsh-completion
|
2021-09-26 12:46:18 +00:00
|
|
|
installShellCompletion --fish watson.fish
|
2020-05-03 17:38:23 +00:00
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ pytestCheckHook pytest-mock mock pytest-datafiles ];
|
2021-09-18 10:52:07 +00:00
|
|
|
propagatedBuildInputs = [ arrow click click-didyoumean requests ];
|
2020-05-03 17:38:23 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://tailordev.github.io/Watson/";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Wonderful CLI to track your time!";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "watson";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
2020-08-20 17:08:02 +00:00
|
|
|
maintainers = with maintainers; [ mguentner nathyong oxzi ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|