nixpkgs/pkgs/by-name/an/annextimelog/package.nix
Matthias Beyer 8760f8d0a1
annextimelog: init at 0.5.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2024-04-07 09:20:18 +02:00

36 lines
721 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib
, python3
, fetchFromGitLab
}:
python3.pkgs.buildPythonApplication rec {
pname = "annextimelog";
version = "0.5.0";
format = "pyproject";
src = fetchFromGitLab {
owner = "nobodyinperson";
repo = "annextimelog";
rev = "v${version}";
hash = "sha256-Q87SmzGaZ2rx+tsOgJIdxHaXK3Kda3jCkgH5y4wvLKE=";
};
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 ];
};
}