3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/git-and-tools/legit/default.nix

29 lines
620 B
Nix
Raw Normal View History

2019-12-07 01:34:14 +00:00
{ 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
];
2021-01-31 21:55:46 +00:00
# no tests
doCheck = false;
2019-12-07 01:34:14 +00:00
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 ];
};
}