This was added as a by-name package but it's actually also a library. I've turned the tests off on Darwin; there's an odd utf-8 error and a permissions error, and both look related to the Nix sandboxing.
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
python,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
writableTmpDirAsHomeHook,
|
|
pkgs,
|
|
}:
|
|
let
|
|
inherit (pkgs) bash git less;
|
|
in
|
|
|
|
buildPythonPackage rec {
|
|
pname = "icdiff";
|
|
version = "2.0.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jeffkaufman";
|
|
repo = "icdiff";
|
|
tag = "release-${version}";
|
|
hash = "sha256-XOw/xhPGlzi1hAgzQ1EtioUM476A+lQWLlvvaxd9j08=";
|
|
leaveDotGit = true;
|
|
};
|
|
|
|
patches = [ ./0001-Don-t-test-black-or-flake8.patch ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "icdiff" ];
|
|
|
|
nativeCheckInputs = [
|
|
bash
|
|
git
|
|
less
|
|
writableTmpDirAsHomeHook
|
|
];
|
|
|
|
# Odd behavior in the sandbox
|
|
doCheck = !stdenv.hostPlatform.isDarwin;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
patchShebangs test.sh
|
|
./test.sh ${python.interpreter}
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = {
|
|
description = "Improved colorized diff";
|
|
homepage = "https://github.com/jeffkaufman/icdiff";
|
|
changelog = "https://github.com/jeffkaufman/icdiff/releases/tag/release-${version}/CHANGELOG.md";
|
|
license = lib.licenses.psfl;
|
|
maintainers = with lib.maintainers; [ philiptaron ];
|
|
};
|
|
}
|