2022-12-05 21:02:12 +00:00
|
|
|
{ lib
|
|
|
|
, python3Packages
|
2023-05-25 14:51:30 +00:00
|
|
|
, fetchPypi
|
2022-12-05 21:02:12 +00:00
|
|
|
}:
|
2019-12-07 01:34:14 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "legit";
|
2024-01-18 11:26:49 +00:00
|
|
|
version = "1.2.0.post0";
|
2022-12-05 21:02:12 +00:00
|
|
|
|
2023-05-25 14:51:30 +00:00
|
|
|
src = fetchPypi {
|
2019-12-07 01:34:14 +00:00
|
|
|
inherit pname version;
|
2024-07-13 16:25:56 +00:00
|
|
|
hash = "sha256-lJOWtoApqK9AWrIMkBkCNB72vVXH/sbatxFB1j1AaxE=";
|
2019-12-07 01:34:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
click
|
|
|
|
clint
|
|
|
|
crayons
|
2022-12-05 21:02:12 +00:00
|
|
|
gitpython
|
2019-12-07 01:34:14 +00:00
|
|
|
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 ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "legit";
|
2019-12-07 01:34:14 +00:00
|
|
|
};
|
|
|
|
}
|