nixpkgs/pkgs/development/python-modules/paypalrestsdk/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
952 B
Nix
Raw Permalink Normal View History

{
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 = [ ];
};
}