at 18.03-beta 26 lines 632 B view raw
1{ fetchFromGitHub, pythonPackages, stdenv }: 2 3pythonPackages.buildPythonApplication rec { 4 ver = "0.8.5"; 5 name = "gitless-${ver}"; 6 7 src = fetchFromGitHub { 8 owner = "sdg-mit"; 9 repo = "gitless"; 10 rev = "v${ver}"; 11 sha256 = "1v22i5lardswpqb6vxjgwra3ac8652qyajbijfj18vlkhajz78hq"; 12 }; 13 14 propagatedBuildInputs = with pythonPackages; [ sh pygit2 clint ]; 15 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 homepage = http://gitless.com/; 20 description = "A version control system built on top of Git"; 21 license = licenses.gpl2; 22 platforms = platforms.all; 23 maintainers = [ maintainers.cransom ]; 24 }; 25} 26