From 9148419881e97f001a9e9d1b1639b32cb39f6ea4 Mon Sep 17 00:00:00 2001 From: emaryn Date: Tue, 22 Apr 2025 04:09:22 +0800 Subject: [PATCH] dotbot: 1.20.4 -> 1.21.0 Diff: https://github.com/anishathalye/dotbot/compare/refs/tags/v1.20.4...refs/tags/v1.21.0 Changelog: https://github.com/anishathalye/dotbot/blob/v1.21.0/CHANGELOG.md --- pkgs/by-name/do/dotbot/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/do/dotbot/package.nix b/pkgs/by-name/do/dotbot/package.nix index 7bb4b99872d5..0cd926383768 100644 --- a/pkgs/by-name/do/dotbot/package.nix +++ b/pkgs/by-name/do/dotbot/package.nix @@ -6,23 +6,23 @@ python3Packages.buildPythonApplication rec { pname = "dotbot"; - version = "1.20.4"; + version = "1.21.0"; pyproject = true; src = fetchFromGitHub { owner = "anishathalye"; repo = "dotbot"; tag = "v${version}"; - hash = "sha256-GnzN8z7LP9rVD0DnKkPxJ0BxiO1YDY7MyMWBt1CAh6g="; + hash = "sha256-f+ykGXcQ1hLptGElQ5ZTt8z0SXnlTbdcf922AVF78bU="; }; preCheck = '' patchShebangs bin/dotbot ''; - nativeBuildInputs = with python3Packages; [ setuptools ]; + build-system = with python3Packages; [ hatchling ]; - propagatedBuildInputs = with python3Packages; [ pyyaml ]; + dependencies = with python3Packages; [ pyyaml ]; nativeCheckInputs = with python3Packages; [ pytestCheckHook ];