1{
2 buildPythonPackage,
3 fetchFromGitHub,
4 lib,
5 setuptools-scm,
6}:
7buildPythonPackage rec {
8 pname = "git-find-repos";
9 version = "2.1.0";
10 pyproject = true;
11
12 src = fetchFromGitHub {
13 owner = "acroz";
14 repo = "git-find-repos";
15 rev = version;
16 sha256 = "sha256-4TuZlt6XH4//DBHPuIMl/i3Tp6Uft62dGCTAuZ2rseE=";
17 };
18
19 build-system = [ setuptools-scm ];
20
21 meta = {
22 description = "Simple CLI tool for finding git repositories";
23 homepage = "https://github.com/acroz/git-find-repos";
24 license = lib.licenses.mit;
25 mainProgram = "git-find-repos";
26 maintainers = [ lib.maintainers.yajo ];
27 };
28}