biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / an / annextimelog / package.nix
blob799525ea8824583d1deeb9fd1e7ec7429c95843a
1 { lib
2 , python3
3 , fetchFromGitLab
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "annextimelog";
8   version = "0.13.1";
9   format = "pyproject";
11   src = fetchFromGitLab {
12     owner = "nobodyinperson";
13     repo = "annextimelog";
14     rev = "v${version}";
15     hash = "sha256-VgeILw8WfqVrmsU/kBw+jHTOt2a6sVT7YgP2pKRp2AY=";
16   };
18   nativeBuildInputs = with python3.pkgs; [
19     setuptools
20     wheel
21     poetry-core
22   ];
24   propagatedBuildInputs = with python3.pkgs; [
25     rich
26   ];
28   meta = with lib; {
29     description = "️Git Annex-backed Time Tracking";
30     homepage = "https://gitlab.com/nobodyinperson/annextimelog";
31     license = licenses.gpl3Plus;
32     maintainers = with maintainers; [ matthiasbeyer ];
33   };