Merge pull request #279322 from matthiasbeyer/add-annextimelog

annextimelog: init at 0.13.1
This commit is contained in:
Matthias Beyer 2024-04-07 09:54:21 +02:00 committed by GitHub
commit 0d64181d13
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, python3
, fetchFromGitLab
}:
python3.pkgs.buildPythonApplication rec {
pname = "annextimelog";
version = "0.13.1";
format = "pyproject";
src = fetchFromGitLab {
owner = "nobodyinperson";
repo = "annextimelog";
rev = "v${version}";
hash = "sha256-VgeILw8WfqVrmsU/kBw+jHTOt2a6sVT7YgP2pKRp2AY=";
};
nativeBuildInputs = with python3.pkgs; [
setuptools
wheel
poetry-core
];
propagatedBuildInputs = with python3.pkgs; [
rich
];
meta = with lib; {
description = "Git Annex-backed Time Tracking";
homepage = "https://gitlab.com/nobodyinperson/annextimelog";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ matthiasbeyer ];
};
}