nixpkgs/pkgs/by-name/le/legit/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
648 B
Nix
Raw Normal View History

2022-12-05 21:02:12 +00:00
{ lib
, python3Packages
, 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
src = fetchPypi {
2019-12-07 01:34:14 +00:00
inherit pname version;
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
};
}