about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/git-and-tools/legit/default.nix
blob: df2866527115b12f9e82eda48daedb50c57c8a6e (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
{ lib, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "legit";
  version = "1.2.0";
  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "0ngh3ar6v15516f52j21k6qz7hykmxfjadhb2rakvl27b5xvjy1c";
  };

  propagatedBuildInputs = with python3Packages; [
    click
    clint
    crayons
    GitPython
    six
  ];

  # no tests
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/frostming/legit";
    description = "Git for Humans, Inspired by GitHub for Mac";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ryneeverett ];
  };
}