7 python3Packages.buildPythonApplication rec {
8 pname = "git-autoshare";
12 src = fetchFromGitHub {
14 repo = "git-autoshare";
16 hash = "sha256-F8wcAayIR6MH8e0cQSwFJn/AVSLG3tVil80APjcFG/0=";
19 build-system = with python3Packages; [ setuptools-scm ];
20 dependencies = with python3Packages; [
26 # Tests require network
29 makeWrapperArgs = [ "--set-default GIT_AUTOSHARE_GIT_BIN ${lib.getExe git}" ];
31 pythonImportsCheck = [ "git_autoshare" ];
34 changelog = "https://github.com/acsone/git-autoshare/releases/tag/${version}";
35 description = "Git clone wrapper that automatically uses --reference to save disk space and download time";
36 homepage = "https://github.com/acsone/git-autoshare";
37 license = lib.licenses.gpl3Only;
38 maintainers = with lib.maintainers; [ yajo ];