Loading pkgs/tools/misc/dooit/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib , fetchFromGitHub , python3 }: python3.pkgs.buildPythonApplication rec { pname = "dooit"; version = "1.0.1"; format = "pyproject"; src = fetchFromGitHub { owner = "kraanzu"; repo = pname; rev = "v${version}"; hash = "sha256-7a6xoqbAmnGVUVppQTSo4hH44XFCqBnF7xO7sOVySY0="; }; # Required versions not available pythonRelaxDeps = [ "textual" "tzlocal" ]; nativeBuildInputs = with python3.pkgs; [ poetry-core pythonRelaxDepsHook ]; propagatedBuildInputs = with python3.pkgs; [ textual pyperclip pyyaml dateparser tzlocal appdirs ]; # No tests available doCheck = false; 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; [ wesleyjrz ]; }; } pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3228,6 +3228,8 @@ with pkgs; dpt-rp1-py = callPackage ../tools/misc/dpt-rp1-py { }; dooit = callPackage ../tools/misc/dooit { }; doona = callPackage ../tools/security/doona { }; dotter = callPackage ../tools/misc/dotter { Loading
pkgs/tools/misc/dooit/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib , fetchFromGitHub , python3 }: python3.pkgs.buildPythonApplication rec { pname = "dooit"; version = "1.0.1"; format = "pyproject"; src = fetchFromGitHub { owner = "kraanzu"; repo = pname; rev = "v${version}"; hash = "sha256-7a6xoqbAmnGVUVppQTSo4hH44XFCqBnF7xO7sOVySY0="; }; # Required versions not available pythonRelaxDeps = [ "textual" "tzlocal" ]; nativeBuildInputs = with python3.pkgs; [ poetry-core pythonRelaxDepsHook ]; propagatedBuildInputs = with python3.pkgs; [ textual pyperclip pyyaml dateparser tzlocal appdirs ]; # No tests available doCheck = false; 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; [ wesleyjrz ]; }; }
pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3228,6 +3228,8 @@ with pkgs; dpt-rp1-py = callPackage ../tools/misc/dpt-rp1-py { }; dooit = callPackage ../tools/misc/dooit { }; doona = callPackage ../tools/security/doona { }; dotter = callPackage ../tools/misc/dotter {