Commit ded5cfda authored by Fabian Affolter's avatar Fabian Affolter
Browse files

dep-scan: format with nixfmt

parent f70161f8
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
{ lib
, python3
, fetchFromGitHub
{
  lib,
  fetchFromGitHub,
  python3,
}:

python3.pkgs.buildPythonApplication rec {
@@ -20,9 +21,7 @@ python3.pkgs.buildPythonApplication rec {
      --replace-fail " --cov-append --cov-report term --cov depscan" ""
  '';

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

  dependencies = with python3.pkgs; [
    appthreat-vulnerability-db
@@ -44,9 +43,7 @@ python3.pkgs.buildPythonApplication rec {
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "depscan"
  ];
  pythonImportsCheck = [ "depscan" ];

  preCheck = ''
    export HOME=$(mktemp -d)