diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-07-18 16:05:21 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-18 19:50:01 +0200 |
commit | 0e47fcced442d8e7c1b05184fdc1c14f10ed04ec (patch) | |
tree | 4ae844bc0ec3c670f8697bdc24362c122fa718ad /gnu/packages/task-management.scm | |
parent | e4b70bc55a538569465bcedee19d1f2607308e65 (diff) | |
parent | 8b1bde7bb3936a64244824500ffe60f123704437 (diff) | |
download | guix-0e47fcced442d8e7c1b05184fdc1c14f10ed04ec.tar guix-0e47fcced442d8e7c1b05184fdc1c14f10ed04ec.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/task-management.scm')
-rw-r--r-- | gnu/packages/task-management.scm | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/gnu/packages/task-management.scm b/gnu/packages/task-management.scm index fda0530616..db2a6d9f54 100644 --- a/gnu/packages/task-management.scm +++ b/gnu/packages/task-management.scm @@ -23,6 +23,7 @@ (define-module (gnu packages task-management) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) + #:use-module (gnu packages check) #:use-module (gnu packages freedesktop) #:use-module (gnu packages gettext) #:use-module (gnu packages glib) @@ -45,32 +46,44 @@ #:use-module (guix build-system python)) (define-public clikan - (let ((commit "90fd60e485b46e49fcec7d029384fe1471c4443a") - (revision "0")) + (let ((commit "55ab29e68263c6fed2844aef96fbebacda3eba9b") + (revision "1")) (package (name "clikan") (version - (git-version "0.1.3" revision commit)) + (git-version "0.2.1" revision commit)) (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kitplummer/clikan/") + (url "https://github.com/kitplummer/clikan") (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 "113kizm05v4cvyhdlg9zami54wk9qaiizq19mx36qvq9w7pg7a3k")))) + (base32 "1nyx80z53xxlbhpb5k22jnv4jajxqhjm0gz7qb18w9pqqlrvkqd4")))) (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (setenv "HOME" (getenv "TEMP")) + (when tests? + (add-installed-pythonpath inputs outputs) + (invoke "pytest" "-vv"))))))) + (native-inputs + `(("pytest" ,python-pytest) + ("click" ,python-click))) (inputs `(("click" ,python-click) ("click-default-group" ,python-click-default-group) ("pyyaml" ,python-pyyaml) - ("terminaltables" ,python-terminaltables))) - (synopsis "Command-line kanban (boarding) utility") + ("rich" ,python-rich))) + (home-page "https://github.com/kitplummer/clikan") + (synopsis "Command-line kanban utility") (description "Clikan is a super simple command-line utility for tracking tasks following the Japanese kanban (boarding) style.") - (home-page "https://github.com/kitplummer/clikan/") (license license:expat)))) (define-public t-todo-manager |