nixpkgs/pkgs/applications/misc/topydo/default.nix

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

54 lines
1.4 KiB
Nix
Raw Normal View History

2023-05-14 23:59:46 +03:00
{ lib, python3, fetchFromGitHub, fetchpatch, glibcLocales }:
2017-09-22 00:16:35 +03:00
2023-05-14 23:59:46 +03:00
python3.pkgs.buildPythonApplication rec {
2017-09-22 00:16:35 +03:00
pname = "topydo";
2022-01-19 18:27:12 +03:00
version = "0.14";
2017-09-22 00:16:35 +03:00
src = fetchFromGitHub {
2023-05-14 23:59:46 +03:00
owner = "topydo";
2017-09-22 00:16:35 +03:00
repo = pname;
rev = version;
2022-01-19 18:27:12 +03:00
sha256 = "1lpfdai0pf90ffrzgmmkadbd86rb7250i3mglpkc82aj6prjm6yb";
2017-09-22 00:16:35 +03:00
};
2023-05-14 23:56:59 +03:00
patches = [
# fixes a failing test
(fetchpatch {
name = "update-a-test-reference-ics-file.patch";
url = "https://github.com/topydo/topydo/commit/9373bb4702b512b10f0357df3576c129901e3ac6.patch";
hash = "sha256-JpyQfryWSoJDdyzbrESWY+RmRbDw1myvTlsFK7+39iw=";
})
];
2023-05-14 23:59:46 +03:00
propagatedBuildInputs = with python3.pkgs; [
2017-09-22 00:16:35 +03:00
arrow
glibcLocales
2023-05-14 23:59:46 +03:00
icalendar
prompt-toolkit
2017-09-22 00:16:35 +03:00
urwid
watchdog
];
2023-05-14 23:59:46 +03:00
nativeCheckInputs = with python3.pkgs; [
freezegun
unittestCheckHook
];
# Skip test that has been reported multiple times upstream without result:
# bram85/topydo#271, bram85/topydo#274.
preCheck = ''
substituteInPlace test/test_revert_command.py --replace 'test_revert_ls' 'dont_test_revert_ls'
'';
2017-09-22 00:16:35 +03:00
LC_ALL = "en_US.UTF-8";
2017-09-22 00:16:35 +03:00
meta = with lib; {
2017-09-22 00:16:35 +03:00
description = "Cli todo application compatible with the todo.txt format";
mainProgram = "topydo";
2023-05-14 23:59:46 +03:00
homepage = "https://github.com/topydo/topydo";
changelog = "https://github.com/topydo/topydo/blob/${src.rev}/CHANGES.md";
license = licenses.gpl3Plus;
maintainers = [ ];
2017-09-22 00:16:35 +03:00
};
}