Skip to content

Commit

Permalink
dep-scan: format with nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Apr 10, 2024
1 parent f70161f commit ded5cfd
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions pkgs/by-name/de/dep-scan/package.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ lib
, python3
, fetchFromGitHub
{
lib,
fetchFromGitHub,
python3,
}:

python3.pkgs.buildPythonApplication rec {
Expand All @@ -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
Expand All @@ -44,9 +43,7 @@ python3.pkgs.buildPythonApplication rec {
pytestCheckHook
];

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

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

0 comments on commit ded5cfd

Please sign in to comment.