biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / version-management / git-relevant-history / default.nix
blob063aa3215705b6b8aa61a59217b2fb7680023c96
1 { lib, fetchFromGitHub, python3, git, git-filter-repo }:
3 python3.pkgs.buildPythonApplication rec {
4   pname = "git-relevant-history";
5   version = "2022-09-15";
6   src = fetchFromGitHub {
7     owner = "rainlabs-eu";
8     repo = pname;
9     rev = "84552324d7cb4790db86282fc61bf98a05b7a4fd";
10     hash = "sha256-46a6TR1Hi3Lg2DTmOp1aV5Uhd4IukTojZkA3TVbTnRY=";
11   };
12   propagatedBuildInputs = [
13     git git-filter-repo
14     python3.pkgs.docopt
15   ];
17   meta = with lib; {
18     description = "Extract only relevant history from git repo";
19     homepage = "https://github.com/rainlabs-eu/git-relevant-history";
20     license = licenses.asl20;
21     platforms = platforms.all;
22     maintainers = [ maintainers.bendlas ];
23     mainProgram = "git-relevant-history";
24   };