Merge pull request #296535 from r-ryantm/auto-update/python311Packages.paypalrestsdk

python311Packages.paypalrestsdk: 1.13.2 -> 1.13.3
This commit is contained in:
Weijia Wang 2024-03-23 23:07:19 +01:00 committed by GitHub
commit 3c4faae098
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 11 deletions

View File

@ -1,23 +1,23 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchPypi
# build-system
, setuptools
# dependencies
, pyopenssl
, pythonOlder
, requests
, six
}:
buildPythonPackage rec {
pname = "paypalrestsdk";
version = "1.13.2";
version = "1.13.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-kZUfNtsw1oW5ceFASYSRo1bPHfjv9xZWYDrKTtcs81o=";
hash = "sha256-2sI2SSqawSYKdgAUouVqs4sJ2BQylbXollRTWbYf7dY=";
};
build-system = [
@ -30,15 +30,21 @@ buildPythonPackage rec {
six
];
doCheck = false; # no tests
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"paypalrestsdk"
];
meta = {
homepage = "https://developer.paypal.com/";
meta = with lib; {
description = "Python APIs to create, process and manage payment";
license = "PayPal SDK License";
homepage = "https://github.com/paypal/PayPal-Python-SDK";
changelog = "https://github.com/paypal/PayPal-Python-SDK/blob/master/CHANGELOG.md";
license = {
fullName = "PayPal SDK License";
url = "https://github.com/paypal/PayPal-Python-SDK/blob/master/LICENSE";
};
maintainers = with maintainers; [ ];
};
}