python312Packages.resend: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-10 09:23:25 +02:00
parent cf0d086988
commit 04d9c552b8

View file

@ -1,11 +1,12 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, setuptools fetchFromGitHub,
, pythonOlder setuptools,
, pytestCheckHook pythonOlder,
, requests pytestCheckHook,
, typing-extensions requests,
typing-extensions,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -22,22 +23,16 @@ buildPythonPackage rec {
hash = "sha256-TuumT77SGVIi/zaWd7FJwTZFiwZcyb1RioMcG7QXxgE="; hash = "sha256-TuumT77SGVIi/zaWd7FJwTZFiwZcyb1RioMcG7QXxgE=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
requests requests
typing-extensions typing-extensions
]; ];
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "resend" ];
"resend"
];
meta = with lib; { meta = with lib; {
description = "SDK for Resend"; description = "SDK for Resend";