1{ fetchFromGitHub, python, lib }:
2
3with python.pkgs;
4buildPythonApplication rec {
5 pname = "gitless";
6 version = "0.8.8";
7
8 src = fetchFromGitHub {
9 owner = "sdg-mit";
10 repo = "gitless";
11 rev = "v${version}";
12 sha256 = "1q6y38f8ap6q1livvfy0pfnjr0l8b68hyhc9r5v87fmdyl7y7y8g";
13 };
14
15 propagatedBuildInputs = with pythonPackages; [ sh pygit2 clint ];
16
17 doCheck = false;
18
19 meta = with lib; {
20 homepage = "https://gitless.com/";
21 description = "A version control system built on top of Git";
22 license = licenses.gpl2;
23 platforms = platforms.all;
24 maintainers = [ maintainers.cransom ];
25 };
26}
27