Unverified Commit caf7fa14 authored by Kerstin Humm's avatar Kerstin Humm
Browse files

python3Packages.diff-match-patch: 20230430 -> 20241021

parent 796a4b45
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -8,15 +8,16 @@

buildPythonPackage rec {
  pname = "diff-match-patch";
  version = "20230430";
  format = "pyproject";
  version = "20241021";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-lTAZzbnJ0snke1sSvP889HRvxFmOtAYHb6H8J+ah8Vw=";
    pname = "diff_match_patch";
    inherit version;
    hash = "sha256-vq5XqZ+kgIRTKTXuKWi4Zh24YYYuyCxvIfSs3W2DUHM=";
  };

  nativeBuildInputs = [ flit-core ];
  dependencies = [ flit-core ];

  nativeCheckInputs = [ unittestCheckHook ];