Commit e5bec360 authored by QuincePie's avatar QuincePie
Browse files

dep-scan: 5.3.4 -> 5.4.3

parent 5fcbdb93
Loading
Loading
Loading
Loading
+14 −2
Original line number Diff line number Diff line
@@ -4,16 +4,28 @@
  python3,
}:

let
  appthreat-vulnerability-db = (
    python3.pkgs.appthreat-vulnerability-db.overrideAttrs (oldAttrs: rec {
      version = "5.7.3";
      src = oldAttrs.src.override {
        rev = "refs/tags/v${version}";
        hash = "sha256-MrlgBUx3T2G46Pnah3obe5b4yKDzsAFVC/B7AHM0kZY=";
      };
    })
  );

in
python3.pkgs.buildPythonApplication rec {
  pname = "dep-scan";
  version = "5.3.4";
  version = "5.4.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "owasp-dep-scan";
    repo = "dep-scan";
    rev = "refs/tags/v${version}";
    hash = "sha256-5iMhl3Wcxwgq4Wr0TUcAuRnb2+y8DHBugnnkpcZfSAM=";
    hash = "sha256-m0vDsCetOSfScu1eprrGaDJ1VuXxuNFBitK8N5GtfSQ=";
  };

  build-system = with python3.pkgs; [ setuptools ];