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