about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/git-crecord/default.nix
blob: 5dc75ce4d702692587f7aaaf42434f8570a9a19f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, fetchFromGitHub, pythonPackages }:

pythonPackages.buildPythonApplication rec {
  pname = "git-crecord";
  version = "20161216.0";

  src = fetchFromGitHub {
    owner = "andrewshadura";
    repo = "git-crecord";
    rev = version;
    sha256 = "0v3y90zi43myyi4k7q3892dcrbyi9dn2q6xgk12nw9db9zil269i";
  };

  propagatedBuildInputs = with pythonPackages; [ docutils ];

  meta = {
    homepage = "https://github.com/andrewshadura/git-crecord";
    description = "Git subcommand to interactively select changes to commit or stage";
    license = lib.licenses.gpl2Plus;
  };
}