Commit 8457a384 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.policy-sentry: use nixfmt

parent 08de45e9
Loading
Loading
Loading
Loading
+15 −20
Original line number Diff line number Diff line
{ lib
, beautifulsoup4
, buildPythonPackage
, click
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, pyyaml
, requests
, schema
, setuptools
{
  lib,
  beautifulsoup4,
  buildPythonPackage,
  click,
  fetchFromGitHub,
  pytestCheckHook,
  pythonOlder,
  pyyaml,
  requests,
  schema,
  setuptools,
}:

buildPythonPackage rec {
@@ -25,9 +26,7 @@ buildPythonPackage rec {
    hash = "sha256-1LYcUlGoSalbdo4tiNIYbdA04IHRTImhdWScpiCZk50=";
  };

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    beautifulsoup4
@@ -37,13 +36,9 @@ buildPythonPackage rec {
    schema
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];
  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [
    "policy_sentry"
  ];
  pythonImportsCheck = [ "policy_sentry" ];

  meta = with lib; {
    description = "Python module for generating IAM least privilege policies";