nixpkgs/pkgs/applications/office/watson/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.2 KiB
Nix
Raw Normal View History

2022-06-06 12:58:15 +00:00
{ lib, fetchFromGitHub, python3, installShellFiles, fetchpatch }:
with python3.pkgs;
buildPythonApplication rec {
pname = "watson";
version = "2.1.0";
2017-05-04 16:11:36 +00:00
src = fetchFromGitHub {
owner = "TailorDev";
repo = "Watson";
rev = version;
sha256 = "sha256-/AASYeMkt18KPJljAjNPRYOpg/T5xuM10LJq4LrFD0g=";
2017-05-04 16:11:36 +00:00
};
2022-06-06 12:58:15 +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-04-28 06:46:48 +00:00
postInstall = ''
installShellCompletion --bash --name watson watson.completion
installShellCompletion --zsh --name _watson watson.zsh-completion
2021-09-24 17:24:54 +00:00
installShellCompletion --fish watson.fish
2020-04-28 06:46:48 +00:00
'';
nativeCheckInputs = [ pytestCheckHook pytest-mock mock pytest-datafiles ];
2021-09-12 17:29:38 +00:00
propagatedBuildInputs = [ arrow click click-didyoumean requests ];
2020-04-28 06:46:48 +00:00
nativeBuildInputs = [ installShellFiles ];
2017-05-04 16:11:36 +00:00
meta = with lib; {
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;
maintainers = with maintainers; [ mguentner nathyong oxzi ];
2017-05-04 16:11:36 +00:00
};
}