nixpkgs/pkgs/development/python-modules/paypalrestsdk/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

48 lines
952 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pyopenssl,
pythonOlder,
requests,
six,
}:
buildPythonPackage rec {
pname = "paypalrestsdk";
version = "1.13.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-2sI2SSqawSYKdgAUouVqs4sJ2BQylbXollRTWbYf7dY=";
};
build-system = [ setuptools ];
dependencies = [
pyopenssl
requests
six
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "paypalrestsdk" ];
meta = with lib; {
description = "Python APIs to create, process and manage payment";
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 = [ ];
};
}