chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / gi / git-autoshare / package.nix
bloba685f182ef9bad7889c693b643fe0aed5902e484
2   fetchFromGitHub,
3   git,
4   lib,
5   python3Packages,
6 }:
7 python3Packages.buildPythonApplication rec {
8   pname = "git-autoshare";
9   version = "1.0.0b6";
10   pyproject = true;
12   src = fetchFromGitHub {
13     owner = "acsone";
14     repo = "git-autoshare";
15     rev = version;
16     hash = "sha256-F8wcAayIR6MH8e0cQSwFJn/AVSLG3tVil80APjcFG/0=";
17   };
19   build-system = with python3Packages; [ setuptools-scm ];
20   dependencies = with python3Packages; [
21     appdirs
22     click
23     pyyaml
24   ];
26   # Tests require network
27   doCheck = false;
29   makeWrapperArgs = [ "--set-default GIT_AUTOSHARE_GIT_BIN ${lib.getExe git}" ];
31   pythonImportsCheck = [ "git_autoshare" ];
33   meta = {
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 ];
39   };