about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jira
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-20 23:21:18 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-21 13:32:53 +0200
commit703c10847211d13fd897a54061d90123680b410a (patch)
treed121117bbc8f399c7fedadf7aa03f19858a37252 /pkgs/development/python-modules/jira
parenta5158b8c01cc92b6057beec08ed402cc5614ccdb (diff)
downloadnixlib-703c10847211d13fd897a54061d90123680b410a.tar
nixlib-703c10847211d13fd897a54061d90123680b410a.tar.gz
nixlib-703c10847211d13fd897a54061d90123680b410a.tar.bz2
nixlib-703c10847211d13fd897a54061d90123680b410a.tar.lz
nixlib-703c10847211d13fd897a54061d90123680b410a.tar.xz
nixlib-703c10847211d13fd897a54061d90123680b410a.tar.zst
nixlib-703c10847211d13fd897a54061d90123680b410a.zip
pythonPackages: deprecate requests_toolbelt alias
Diffstat (limited to 'pkgs/development/python-modules/jira')
-rw-r--r--pkgs/development/python-modules/jira/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/jira/default.nix b/pkgs/development/python-modules/jira/default.nix
index e386f390bc23..a3f790abfc51 100644
--- a/pkgs/development/python-modules/jira/default.nix
+++ b/pkgs/development/python-modules/jira/default.nix
@@ -1,6 +1,6 @@
 { lib, buildPythonPackage, fetchPypi, isPy3k
 , pytest, pytest-runner, pbr, glibcLocales , pytest-cov
-, requests, requests_oauthlib, requests_toolbelt, defusedxml
+, requests, requests_oauthlib, requests-toolbelt, defusedxml
 , ipython
 }:
 
@@ -16,7 +16,7 @@ buildPythonPackage rec {
   };
 
   buildInputs = [ glibcLocales pytest pytest-cov pytest-runner pbr ];
-  propagatedBuildInputs = [ requests requests_oauthlib requests_toolbelt defusedxml pbr ipython ];
+  propagatedBuildInputs = [ requests requests_oauthlib requests-toolbelt defusedxml pbr ipython ];
 
   # impure tests because of connectivity attempts to jira servers
   doCheck = false;