2022-12-17 10:02:37 +00:00
|
|
|
{ lib
|
|
|
|
, python3Packages
|
2023-07-15 17:15:38 +00:00
|
|
|
, fetchPypi
|
2022-12-17 10:02:37 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "legit";
|
2024-01-25 14:12:00 +00:00
|
|
|
version = "1.2.0.post0";
|
2022-12-17 10:02:37 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit pname version;
|
2024-01-25 14:12:00 +00:00
|
|
|
sha256 = "sha256-lJOWtoApqK9AWrIMkBkCNB72vVXH/sbatxFB1j1AaxE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
click
|
|
|
|
clint
|
|
|
|
crayons
|
2022-12-17 10:02:37 +00:00
|
|
|
gitpython
|
2020-04-24 23:36:52 +00:00
|
|
|
six
|
|
|
|
];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
2020-04-24 23:36:52 +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 ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "legit";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|