1 { lib, fetchFromGitHub, python3 }:
3 python3.pkgs.buildPythonApplication rec {
5 version = "20230226.0";
7 src = fetchFromGitHub {
8 owner = "andrewshadura";
10 rev = "refs/tags/${version}";
11 sha256 = "sha256-zsrMAD9EU+TvkWfWl9x6WbMXuw7YEz50LxQzSFVkKdQ=";
14 propagatedBuildInputs = with python3.pkgs; [ docutils ];
20 homepage = "https://github.com/andrewshadura/git-crecord";
21 description = "Git subcommand to interactively select changes to commit or stage";
22 license = licenses.gpl2Plus;
23 maintainers = with maintainers; [ onny ];
24 mainProgram = "git-crecord";