depot/third_party/nixpkgs/pkgs/tools/misc/dooit/default.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

54 lines
1.1 KiB
Nix

{ lib
, fetchFromGitHub
, dooit
, python3
, testers
}:
python3.pkgs.buildPythonApplication rec {
pname = "dooit";
version = "2.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "kraanzu";
repo = "dooit";
rev = "v${version}";
hash = "sha256-YfWfh8oDZSG1DdAV+hzchqyNSSqyeNR5SSEa9B5yGY8=";
};
nativeBuildInputs = with python3.pkgs; [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"tzlocal"
];
propagatedBuildInputs = with python3.pkgs; [
appdirs
pyperclip
python-dateutil
pyyaml
textual
tzlocal
];
# No tests available
doCheck = false;
passthru.tests.version = testers.testVersion {
package = dooit;
command = "HOME=$(mktemp -d) dooit --version";
};
meta = with lib; {
description = "A TUI todo manager";
homepage = "https://github.com/kraanzu/dooit";
changelog = "https://github.com/kraanzu/dooit/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ khaneliman wesleyjrz ];
mainProgram = "dooit";
};
}