mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
48 lines
952 B
Nix
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 = [ ];
|
|
};
|
|
}
|