Commit 08f4097b authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pycognito: format with nixfmt

parent b846431f
Loading
Loading
Loading
Loading
+18 −21
Original line number Diff line number Diff line
{ lib
, boto3
, buildPythonPackage
, envs
, fetchFromGitHub
, freezegun
, mock
, moto
, pyjwt
, pytestCheckHook
, pythonOlder
, requests
, requests-mock
, setuptools
{
  lib,
  boto3,
  buildPythonPackage,
  envs,
  fetchFromGitHub,
  freezegun,
  mock,
  moto,
  pyjwt,
  pytestCheckHook,
  pythonOlder,
  requests,
  requests-mock,
  setuptools,
}:

buildPythonPackage rec {
@@ -28,17 +29,14 @@ buildPythonPackage rec {
    hash = "sha256-U23fFLru4j6GnWMcYtsCW9BVJkVcCoefPH6oMijYGew=";
  };

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

  dependencies = [
    boto3
    envs
    pyjwt
    requests
  ]
  ++ pyjwt.optional-dependencies.crypto;
  ] ++ pyjwt.optional-dependencies.crypto;

  nativeCheckInputs = [
    freezegun
@@ -46,8 +44,7 @@ buildPythonPackage rec {
    moto
    pytestCheckHook
    requests-mock
  ]
  ++ moto.optional-dependencies.cognitoidp;
  ] ++ moto.optional-dependencies.cognitoidp;

  pytestFlagsArray = [ "tests.py" ];