mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
34 lines
648 B
Nix
34 lines
648 B
Nix
{ lib
|
|
, python3Packages
|
|
, fetchPypi
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "legit";
|
|
version = "1.2.0.post0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-lJOWtoApqK9AWrIMkBkCNB72vVXH/sbatxFB1j1AaxE=";
|
|
};
|
|
|
|
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 ];
|
|
mainProgram = "legit";
|
|
};
|
|
}
|