summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-04-23 14:08:00 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-04-23 14:08:00 +0200
commit37142a9703bb1b65b49764d0c21bded2fdb6bfcf (patch)
tree431534a879fa71b04e708ca60902a4176e9a5233
parentMerge pull request #225379 from tie/mainainers-add-tie-pufferpanel (diff)
downloadnixpkgs-37142a9703bb1b65b49764d0c21bded2fdb6bfcf.tar.gz
python310Packages.simple-salesforce: add pyjwt as input
-rw-r--r--pkgs/development/python-modules/simple-salesforce/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/simple-salesforce/default.nix b/pkgs/development/python-modules/simple-salesforce/default.nix
index 9facb239f4cb..dc080836b737 100644
--- a/pkgs/development/python-modules/simple-salesforce/default.nix
+++ b/pkgs/development/python-modules/simple-salesforce/default.nix
@@ -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 ];
};