Skip to content

Commit

Permalink
Merge pull request #279322 from matthiasbeyer/add-annextimelog
Browse files Browse the repository at this point in the history
annextimelog: init at 0.13.1
  • Loading branch information
matthiasbeyer committed Apr 7, 2024
2 parents b85364a + be1946a commit 0d64181
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/by-name/an/annextimelog/package.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 0d64181

Please sign in to comment.