{ lib, fetchFromGitHub, python3, }: python3.pkgs.buildPythonApplication (finalAttrs: { pname = "gitless"; version = "0.9.17"; pyproject = true; src = fetchFromGitHub { owner = "goldstar611"; repo = "gitless"; rev = finalAttrs.version; hash = "sha256-XDB1i2b1reMCM6i1uK3IzTnsoLXO7jldYtNlYUo1AoQ="; }; build-system = with python3.pkgs; [ setuptools ]; dependencies = with python3.pkgs; [ pygit2 argcomplete ]; pythonRelaxDeps = [ "pygit2" ]; doCheck = false; pythonImportsCheck = [ "gitless" ]; meta = { description = "Version control system built on top of Git"; homepage = "https://gitless.com/"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ cransom ]; platforms = lib.platforms.all; mainProgram = "gl"; }; })