pythonPackages.ydiff: init at 1.1
This commit is contained in:
parent
ee936405b7
commit
ce8d1c2adf
29
pkgs/development/python-modules/ydiff/default.nix
Normal file
29
pkgs/development/python-modules/ydiff/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -5770,6 +5770,8 @@ in {
|
|||||||
|
|
||||||
xxhash = callPackage ../development/python-modules/xxhash { };
|
xxhash = callPackage ../development/python-modules/xxhash { };
|
||||||
|
|
||||||
|
ydiff = callPackage ../development/python-modules/ydiff { };
|
||||||
|
|
||||||
yoda = toPythonModule (pkgs.yoda.override {
|
yoda = toPythonModule (pkgs.yoda.override {
|
||||||
inherit python;
|
inherit python;
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user