Merge pull request #310517 from fabaff/resend-bump

python312Packages.resend: 0.8.0 -> 1.0.1
This commit is contained in:
Fabian Affolter 2024-05-10 12:32:06 +02:00 committed by GitHub
commit 90a9b0606b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,15 +1,17 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
, pytestCheckHook
, requests
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pythonOlder,
pytestCheckHook,
requests,
typing-extensions,
}:
buildPythonPackage rec {
pname = "resend";
version = "0.8.0";
version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -18,24 +20,19 @@ buildPythonPackage rec {
owner = "resend";
repo = "resend-python";
rev = "refs/tags/v${version}";
hash = "sha256-6cQtI3it2AS8UdT83fp3y3IcbjSyPmBlQuymN74fBNo=";
hash = "sha256-TuumT77SGVIi/zaWd7FJwTZFiwZcyb1RioMcG7QXxgE=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
requests
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"resend"
];
pythonImportsCheck = [ "resend" ];
meta = with lib; {
description = "SDK for Resend";