depot/third_party/nixpkgs/pkgs/development/python-modules/ydiff/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
922 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ydiff";
version = "1.1";
src = fetchPypi {
inherit pname version;
sha256 = "0mxcl17sx1d4vaw22ammnnn3y19mm7r6ljbarcjzi519klz26bnf";
};
# test suite requires a multitude of other version control tooling
# currently only a single file, an import/usage should suffice
checkPhase = ''
$out/bin/ydiff --help
'';
meta = with stdenv.lib; {
description = "View colored, incremental diff in workspace or from stdin with side by side and auto pager support (Was \"cdiff\")";
longDescription = ''
Term based tool to view colored, incremental diff in a Git/Mercurial/Svn
workspace or from stdin, with side by side (similar to diff -y) and auto
pager support
'';
homepage = "https://github.com/ymattw/ydiff";
license = licenses.bsd3;
maintainers = [ maintainers.limeytexan ];
};
}