git-autoshare: init at 1.0.0b6

@moduon MT-1075
This commit is contained in:
Jairo Llopis 2024-07-03 08:41:01 +01:00
parent 760e817fa8
commit 2ac5ea7729
No known key found for this signature in database
GPG Key ID: B24A1D10508180D8

View File

@ -0,0 +1,40 @@
{
fetchFromGitHub,
git,
lib,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "git-autoshare";
version = "1.0.0b6";
pyproject = true;
src = fetchFromGitHub {
owner = "acsone";
repo = "git-autoshare";
rev = version;
hash = "sha256-F8wcAayIR6MH8e0cQSwFJn/AVSLG3tVil80APjcFG/0=";
};
build-system = with python3Packages; [ setuptools-scm ];
dependencies = with python3Packages; [
appdirs
click
pyyaml
];
# Tests require network
doCheck = false;
makeWrapperArgs = [ "--set-default GIT_AUTOSHARE_GIT_BIN ${lib.getExe git}" ];
pythonImportsCheck = [ "git_autoshare" ];
meta = {
changelog = "https://github.com/acsone/git-autoshare/releases/tag/${version}";
description = "Git clone wrapper that automatically uses --reference to save disk space and download time";
homepage = "https://github.com/acsone/git-autoshare";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ yajo ];
};
}