Unverified Commit 940dccea authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #227792 from fabaff/simple-salesforce-fix

python310Packages.simple-salesforce: add pyjwt as input
parents 144acaab 37142a97
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
, authlib
, requests
, nose
, pyjwt
, pythonOlder
, pytz
, responses
@@ -26,6 +27,7 @@ buildPythonPackage rec {

  propagatedBuildInputs = [
    authlib
    pyjwt
    requests
    zeep
  ];
@@ -42,9 +44,14 @@ buildPythonPackage rec {
    runHook postCheck
  '';

  pythonImportsCheck = [
    "simple_salesforce"
  ];

  meta = with lib; {
    description = "A very simple Salesforce.com REST API client for Python";
    homepage = "https://github.com/simple-salesforce/simple-salesforce";
    changelog = "https://github.com/simple-salesforce/simple-salesforce/blob/v${version}/CHANGES";
    license = licenses.asl20;
    maintainers = with maintainers; [ costrouc ];
  };