summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitless/default.nix
blob: d062c32d018ed5b85e0ff7d5a8bc64b560288127 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ fetchFromGitHub, pythonPackages, stdenv }:

pythonPackages.buildPythonApplication rec {
  ver = "0.8.6";
  name = "gitless-${ver}";

  src = fetchFromGitHub {
    owner = "sdg-mit";
    repo = "gitless";
    rev = "v${ver}";
    sha256 = "1q6y38f8ap6q1livvfy0pfnjr0l8b68hyhc9r5v87fmdyl7y7y8g";
  };

  propagatedBuildInputs = with pythonPackages; [ sh pygit2 clint ];

  doCheck = false;

  meta = with stdenv.lib; {
    homepage = http://gitless.com/;
    description = "A version control system built on top of Git";
    license = licenses.gpl2;
    platforms = platforms.all;
    maintainers = [ maintainers.cransom ];
  };
}