Commit f1119aa1 authored by magicquark's avatar magicquark
Browse files

gita: modernise

parent 3e80bf17
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -6,21 +6,20 @@
}:

python3Packages.buildPythonApplication rec {
  version = "0.16.8.2";
  format = "setuptools";
  pname = "gita";
  version = "0.16.8.2";
  pyproject = true;

  src = fetchFromGitHub {
    sha256 = "sha256-JzfGj17YCYXmpGV2jSsGLsG1oqO5ynj7r3u/mkSBRBg=";
    rev = "v${version}";
    repo = "gita";
    owner = "nosarthur";
    tag = "v${version}";
    hash = "sha256-JzfGj17YCYXmpGV2jSsGLsG1oqO5ynj7r3u/mkSBRBg=";
  };

  dependencies = with python3Packages; [
    argcomplete
    setuptools
  ];
  build-system = [ python3Packages.setuptools ];

  dependencies = [ python3Packages.argcomplete ];

  nativeBuildInputs = [ installShellFiles ];

@@ -36,6 +35,7 @@ python3Packages.buildPythonApplication rec {
  meta = {
    description = "Command-line tool to manage multiple git repos";
    homepage = "https://github.com/nosarthur/gita";
    changelog = "https://github.com/nosarthur/gita/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ seqizz ];
    mainProgram = "gita";