about summary refs log tree commit diff
path: root/pkgs/development/python-modules/git-find-repos/default.nix
blob: d97d153ee6c1109f332ca5ae5a02c98cdbac20cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  buildPythonPackage,
  fetchFromGitHub,
  lib,
  setuptools-scm,
}:
buildPythonPackage rec {
  pname = "git-find-repos";
  version = "2.1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "acroz";
    repo = "git-find-repos";
    rev = version;
    sha256 = "sha256-4TuZlt6XH4//DBHPuIMl/i3Tp6Uft62dGCTAuZ2rseE=";
  };

  build-system = [ setuptools-scm ];

  meta = {
    description = "Simple CLI tool for finding git repositories";
    homepage = "https://github.com/acroz/git-find-repos";
    license = lib.licenses.mit;
    mainProgram = "git-find-repos";
    maintainers = [ lib.maintainers.yajo ];
  };
}