7 python3Packages.buildPythonApplication rec {
12 src = fetchFromGitHub {
13 owner = "anishathalye";
16 hash = "sha256-Gy+LVGG/BAqXoM6GDuKBkGKxxAkmoYtBRA33y/ihdRE=";
20 patchShebangs bin/dotbot
24 # ignore pytest-cache because it was not at /tmp/nix-shell and it was used by pytest itself not our program
25 ./0001-fix-build.patch
28 nativeBuildInputs = with python3Packages; [ setuptools ];
30 propagatedBuildInputs = with python3Packages; [ pyyaml ];
32 nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
35 description = "Tool that bootstraps your dotfiles";
36 mainProgram = "dotbot";
38 Dotbot is designed to be lightweight and self-contained, with no external
39 dependencies and no installation required. Dotbot can also be a drop-in
40 replacement for any other tool you were using to manage your dotfiles, and
41 Dotbot is VCS-agnostic -- it doesn't make any attempt to manage your
44 homepage = "https://github.com/anishathalye/dotbot";
45 changelog = "https://github.com/anishathalye/dotbot/blob/v${version}/CHANGELOG.md";
46 license = lib.licenses.mit;
47 maintainers = with lib.maintainers; [ ludat ];