1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook, pytest-benchmark, wasmer }:
3 buildPythonPackage rec {
9 sha256 = "1ai95vjchl4396zjl1b69xfqvn9kn1y7c40d9l0qxdss0pcx6fk2";
13 substituteInPlace setup.py \
14 --replace 'pytest-runner' ""
17 propagatedBuildInputs = [ wasmer ];
19 checkInputs = [ pytestCheckHook pytest-benchmark ];
21 pythonImportsCheck = [ "fastdiff" ];
22 disabledTests = [ "test_native" ];
25 description = "A fast native implementation of diff algorithm with a pure Python fallback";
26 homepage = "https://github.com/syrusakbary/fastdiff";
27 license = licenses.mit;
28 maintainers = with maintainers; [ SuperSandro2000 ];