biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / version-management / git-crecord / default.nix
blob5365dc4e43aeb2771b9cc5c45f7896c9fcb71899
1 { lib, fetchFromGitHub, python3 }:
3 python3.pkgs.buildPythonApplication rec {
4   pname = "git-crecord";
5   version = "20230226.0";
7   src = fetchFromGitHub {
8     owner = "andrewshadura";
9     repo = "git-crecord";
10     rev = "refs/tags/${version}";
11     sha256 = "sha256-zsrMAD9EU+TvkWfWl9x6WbMXuw7YEz50LxQzSFVkKdQ=";
12   };
14   propagatedBuildInputs = with python3.pkgs; [ docutils ];
16   # has no tests
17   doCheck = false;
19   meta = with lib; {
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";
25   };