nixpkgs/pkgs/by-name/do/dooit/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.2 KiB
Nix
Raw Normal View History

2024-07-27 23:48:33 +02:00
{
lib,
fetchFromGitHub,
dooit,
python311,
2024-07-27 23:48:33 +02:00
testers,
nix-update-script,
2023-03-07 14:31:52 +01:00
}:
let
python3 = python311;
in
2023-03-07 14:31:52 +01:00
python3.pkgs.buildPythonApplication rec {
pname = "dooit";
2024-01-25 19:37:33 +01:00
version = "2.2.0";
pyproject = true;
2023-03-07 14:31:52 +01:00
src = fetchFromGitHub {
owner = "kraanzu";
2023-09-16 22:47:52 +02:00
repo = "dooit";
2023-03-07 14:31:52 +01:00
rev = "v${version}";
2024-01-25 19:37:33 +01:00
hash = "sha256-GtXRzj+o+FClleh73kqelk0JrSyafZhf847lX1BiS9k=";
2023-03-07 14:31:52 +01:00
};
2024-07-27 23:48:33 +02:00
build-system = with python3.pkgs; [ poetry-core ];
pythonRelaxDeps = [
2024-03-12 02:36:07 +01:00
"textual"
"tzlocal"
2023-03-07 14:31:52 +01:00
];
propagatedBuildInputs = with python3.pkgs; [
2023-09-14 02:46:08 +02:00
appdirs
2023-03-07 14:31:52 +01:00
pyperclip
2023-09-14 02:46:08 +02:00
python-dateutil
2023-03-07 14:31:52 +01:00
pyyaml
2023-09-14 02:46:08 +02:00
textual
2023-03-07 14:31:52 +01:00
tzlocal
];
# No tests available
doCheck = false;
2024-03-27 03:22:45 +01:00
passthru = {
tests.version = testers.testVersion {
package = dooit;
command = "HOME=$(mktemp -d) dooit --version";
};
updateScript = nix-update-script { };
2023-09-16 22:47:52 +02:00
};
2023-03-07 14:31:52 +01:00
meta = with lib; {
description = "TUI todo manager";
homepage = "https://github.com/kraanzu/dooit";
changelog = "https://github.com/kraanzu/dooit/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
2024-07-27 23:48:33 +02:00
maintainers = with maintainers; [
khaneliman
wesleyjrz
];
2023-11-27 02:17:53 +01:00
mainProgram = "dooit";
2023-03-07 14:31:52 +01:00
};
}