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

python3Packages.ppdeep: migrate to finalAttrs

parent 3fea8672
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -5,13 +5,13 @@
  setuptools,
}:

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

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

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