Unverified Commit 0b721ad3 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.ppdeep: 20251115 -> 20260218 (#492034)

parents 011ad950 cd1430ee
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -5,14 +5,14 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "ppdeep";
  version = "20251115";
  version = "20260218";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-xv21EXsO6/vpGhF7PIn03l0WGnoMGi0wI6BlpnZye3w=";
    inherit (finalAttrs) pname version;
    hash = "sha256-Jp9jwVhfWA6AFsMef3N/FDot34RA5bDK88oZLONTKis=";
  };

  build-system = [ setuptools ];
@@ -28,4 +28,4 @@ buildPythonPackage rec {
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})