nixpkgs/pkgs/development/python-modules/ydiff/default.nix

49 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, docutils, pygments
, gitMinimal, mercurial, subversion, patchutils, less
}:
2020-02-10 14:11:56 +01:00
buildPythonPackage rec {
pname = "ydiff";
2020-08-16 19:31:20 +02:00
version = "1.2";
2020-02-10 14:11:56 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 19:31:20 +02:00
sha256 = "f5430577ecd30974d766ee9b8333e06dc76a947b4aae36d39612a0787865a121";
2020-02-10 14:11:56 +01:00
};
patchPhase = ''
substituteInPlace ydiff.py \
--replace "['git'" "['${gitMinimal}/bin/git'" \
--replace "['hg'" "['${mercurial}/bin/hg'" \
--replace "['svn'" "['${subversion}/bin/svn'" \
--replace "['filterdiff'" "['${patchutils}/bin/filterdiff'" \
--replace "['less'" "['${less}/bin/less'" # doesn't support PAGER from env
substituteInPlace tests/test_ydiff.py \
--replace /bin/rm rm \
--replace /bin/sh sh
patchShebangs setup.py
patchShebangs tests/*.sh
'';
checkInputs = [ docutils pygments ];
2020-02-10 14:11:56 +01:00
checkPhase = ''
runHook preCheck
make doc-check reg # We don't want the linter or coverage check.
runHook postCheck
2020-02-10 14:11:56 +01:00
'';
meta = with lib; {
2020-02-10 14:11:56 +01:00
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 version
controlled workspace (supports Git, Mercurial, Perforce and Svn
so far) or from stdin, with side by side (similar to diff -y)
and auto pager support.
2020-02-10 14:11:56 +01:00
'';
homepage = "https://github.com/ymattw/ydiff";
license = licenses.bsd3;
maintainers = (with maintainers; [ leenaars ]) ++ teams.deshaw.members;
2020-02-10 14:11:56 +01:00
};
}