mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
35 lines
765 B
Nix
35 lines
765 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "trak";
|
|
version = "0.0.5";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lcfd";
|
|
repo = "trak";
|
|
rev = "v${version}";
|
|
hash = "sha256-YJMX7pNRWdNPyWNZ1HfpdYsKSStRWLcianLz6nScMa8=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/cli";
|
|
|
|
dependencies = with python3Packages; [
|
|
questionary
|
|
typer
|
|
] ++ typer.optional-dependencies.all;
|
|
|
|
build-system = [ python3Packages.poetry-core ];
|
|
|
|
meta = {
|
|
description = "Keep a record of the time you dedicate to your projects";
|
|
homepage = "https://github.com/lcfd/trak";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ buurro ];
|
|
mainProgram = "trak";
|
|
};
|
|
}
|