biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / version-management / git-bars / default.nix
blob66ae9bf2987bc9520efade7d7b5b87df2ade202f
1 { lib, fetchFromGitHub, python3Packages, git }:
3 python3Packages.buildPythonApplication {
4   pname = "git-bars";
5   version = "unstable-2023-08-08";
7   src = fetchFromGitHub {
8     owner = "knadh";
9     repo = "git-bars";
10     rev = "f15fbc15345d9ef021e5a9b278e352bb532dcee8";
11     hash = "sha256-jHP6LqhUQv6hh97tSXAdOruWdtp2FXM6ANlpWoA+fHQ=";
12   };
14   propagatedBuildInputs = [
15     git
16     python3Packages.setuptools
17   ];
19   meta = with lib; {
20     homepage = "https://github.com/knadh/git-bars";
21     description = "Utility for visualising git commit activity as bars on the terminal";
22     license = licenses.mit;
23     maintainers = [ maintainers.matthiasbeyer ];
24     mainProgram = "git-bars";
25   };