summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/atlassian-python-api
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-17 22:39:33 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-17 22:39:33 +0100
commit5c91161c512e755b9401367fbdf0e282fcdadac4 (patch)
tree604afb843a32229dc2ea29a79955b98794394a1d /pkgs/development/python-modules/atlassian-python-api
parent215044592ee1653892ed0410d33e28cecae3b161 (diff)
python311Packages.atlassian-python-api: fix dependencies
Diffstat (limited to 'pkgs/development/python-modules/atlassian-python-api')
-rw-r--r--pkgs/development/python-modules/atlassian-python-api/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/atlassian-python-api/default.nix b/pkgs/development/python-modules/atlassian-python-api/default.nix
index 5d9c36e7b3d8..c4c9f85cf3f2 100644
--- a/pkgs/development/python-modules/atlassian-python-api/default.nix
+++ b/pkgs/development/python-modules/atlassian-python-api/default.nix
@@ -1,9 +1,13 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
+, beautifulsoup4
, deprecated
+, jmespath
+, lxml
, oauthlib
, requests
+, requests-kerberos
, requests-oauthlib
, six
, pytestCheckHook
@@ -25,9 +29,13 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
+ beautifulsoup4
deprecated
+ jmespath
+ lxml
oauthlib
requests
+ requests-kerberos
requests-oauthlib
six
];