aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/ydiff/default.nix
blob: ea30e62546fe435194b44a6ad15aff26db260e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ 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 ];
  };
}