timetagger_cli: init at 23.8.3

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2023-08-20 15:13:38 +02:00
parent 260d7d11c5
commit 0cbe9ce37c
No known key found for this signature in database
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "timetagger_cli";
version = "23.8.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "almarklein";
repo = "timetagger_cli";
rev = "refs/tags/v${version}";
hash = "sha256-vOpwMR7/EGf/l5KvlHn7mQ1vGGZ1Whd5x2uxLV9nCbk=";
};
propagatedBuildInputs = with python3.pkgs; [
requests
toml
];
# Project has no tests
doCheck = false;
meta = with lib; {
description = "Track your time from the command-line ";
homepage = "https://github.com/almarklein/timetagger_cli";
license = with licenses; [ mit ];
maintainers = with maintainers; [ matthiasbeyer ];
};
}

View file

@ -13681,6 +13681,8 @@ with pkgs;
timetagger = callPackage ../servers/timetagger { };
timetagger_cli = callPackage ../tools/misc/timetagger_cli { };
timezonemap = callPackage ../development/libraries/timezonemap { };
tzupdate = callPackage ../applications/misc/tzupdate { };