My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/timetagger/default.nix

51 lines
831 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, asgineer
, itemdb
, jinja2
, markdown
, pscript
, pyjwt
, uvicorn
, pytestCheckHook
, requests
}:
buildPythonPackage rec {
pname = "timetagger";
version = "22.4.2";
src = fetchFromGitHub {
owner = "almarklein";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-CWY+5O4Y1dvKQNy1Cclqj4+U6q5vVVj9hZq41MYqXKs=";
};
propagatedBuildInputs = [
asgineer
itemdb
jinja2
markdown
pscript
pyjwt
uvicorn
];
preCheck = ''
export HOME=$(mktemp -d)
'';
checkInputs = [
pytestCheckHook
requests
];
meta = with lib; {
homepage = "https://timetagger.app";
license = licenses.gpl3Only;
description = "Tag your time, get the insight";
maintainers = with maintainers; [ matthiasbeyer ];
};
}