2022-01-12 02:28:48 +00:00
|
|
|
{ lib, fetchFromGitHub, python3 }:
|
2017-01-15 11:21:45 +00:00
|
|
|
|
2022-01-12 02:28:48 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "git-crecord";
|
2022-01-12 02:28:48 +00:00
|
|
|
version = "20201025.0";
|
2017-01-15 11:21:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "andrewshadura";
|
|
|
|
repo = "git-crecord";
|
|
|
|
rev = version;
|
2022-01-12 02:28:48 +00:00
|
|
|
sha256 = "1rkdmy2d2vsx22fx97nd9afh0g5lq4pns7rdxyl711apq1bhiihn";
|
2017-01-15 11:21:45 +00:00
|
|
|
};
|
|
|
|
|
2022-01-12 02:28:48 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [ docutils ];
|
|
|
|
|
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
2017-01-15 11:21:45 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/andrewshadura/git-crecord";
|
2017-01-15 11:21:45 +00:00
|
|
|
description = "Git subcommand to interactively select changes to commit or stage";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2017-01-15 11:21:45 +00:00
|
|
|
};
|
|
|
|
}
|