mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
dooit,
|
|
python311,
|
|
testers,
|
|
nix-update-script,
|
|
}:
|
|
let
|
|
python3 = python311;
|
|
in
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "dooit";
|
|
version = "2.2.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kraanzu";
|
|
repo = "dooit";
|
|
rev = "v${version}";
|
|
hash = "sha256-GtXRzj+o+FClleh73kqelk0JrSyafZhf847lX1BiS9k=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ poetry-core ];
|
|
|
|
pythonRelaxDeps = [
|
|
"textual"
|
|
"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";
|
|
};
|
|
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
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;
|
|
maintainers = with maintainers; [
|
|
khaneliman
|
|
wesleyjrz
|
|
];
|
|
mainProgram = "dooit";
|
|
};
|
|
}
|