Unverified Commit 878adc2e authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python311Packages.paypalrestsdk: drop

With the repository having been deprecated in 2020, there is little
reason for us to keep this leaf package around.
parent 4f920540
Loading
Loading
Loading
Loading
+0 −20
Original line number Diff line number Diff line
{ buildPythonPackage, fetchPypi
, requests, six, pyopenssl }:

buildPythonPackage rec {
  pname = "paypalrestsdk";
  version = "1.13.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-kZUfNtsw1oW5ceFASYSRo1bPHfjv9xZWYDrKTtcs81o=";
  };

  propagatedBuildInputs = [ requests six pyopenssl ];

  meta = {
    homepage = "https://developer.paypal.com/";
    description = "Python APIs to create, process and manage payment";
    license = "PayPal SDK License";
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -264,6 +264,7 @@ mapAliases ({
  pam = python-pam; # added 2020-09-07.
  PasteDeploy = pastedeploy; # added 2021-10-07
  pathpy = path; # added 2022-04-12
  paypalrestsdk = throw "paypalrestsdk was removed, the upstream repo was archived back in 2020"; # Added 2023-11-25
  pdfposter = throw "pdfposter was promoted to a top-level attribute"; # Added 2023-06-29
  pdfminer = pdfminer-six; # added 2022-05-25
  pep257 = pydocstyle; # added 2022-04-12
+0 −2
Original line number Diff line number Diff line
@@ -8855,8 +8855,6 @@ self: super: with self; {
  paypalhttp = callPackage ../development/python-modules/paypalhttp { };
  paypalrestsdk = callPackage ../development/python-modules/paypalrestsdk { };
  pbkdf2 = callPackage ../development/python-modules/pbkdf2 { };
  pbr = callPackage ../development/python-modules/pbr { };