Unverified Commit 1934d292 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

safety-cli: 3.4.0 -> 3.5.0 (#404918)

parents 0b4daf54 01539dbc
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -31,14 +31,14 @@

buildPythonPackage rec {
  pname = "safety";
  version = "3.4.0";
  version = "3.5.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pyupio";
    repo = "safety";
    tag = version;
    hash = "sha256-CyEBgB3YgTQDzqJloL0XaRF0h6soNOWmtWTjP423MmY=";
    hash = "sha256-F/tFfLDD2e+M5hHepaqhu5uqwqp2IHD7zxTYNMa+YCQ=";
  };

  patches = [
@@ -99,7 +99,7 @@ buildPythonPackage rec {
    description = "Checks installed dependencies for known vulnerabilities";
    mainProgram = "safety";
    homepage = "https://github.com/pyupio/safety";
    changelog = "https://github.com/pyupio/safety/blob/${version}/CHANGELOG.md";
    changelog = "https://github.com/pyupio/safety/blob/${src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      thomasdesr