summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-11-28 08:45:50 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-29 00:11:24 -0800
commit7bc1c8ed3e48c11720ecb2688683513daaabf4c4 (patch)
tree23f506c0e595a0eb805c658aab84baa002916e42 /pkgs
parent98c4cec2a186a24fef84bcdfbc81e152a24b7340 (diff)
python3Packages.azure-servicebus: 0.50.3 -> 7.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-servicebus/default.nix2
-rw-r--r--pkgs/development/python-modules/azure-servicebus/default.nix6
2 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix b/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix
index 8d49d8bb1f0f..2deaf2b91dd7 100644
--- a/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix
@@ -4,6 +4,7 @@
, msrest
, msrestazure
, azure-common
+, azure-mgmt-core
, azure-mgmt-nspkg
, isPy3k
}:
@@ -22,6 +23,7 @@ buildPythonPackage rec {
msrest
msrestazure
azure-common
+ azure-mgmt-core
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
];
diff --git a/pkgs/development/python-modules/azure-servicebus/default.nix b/pkgs/development/python-modules/azure-servicebus/default.nix
index 9c48f5b56c2d..2f61a2d9bad9 100644
--- a/pkgs/development/python-modules/azure-servicebus/default.nix
+++ b/pkgs/development/python-modules/azure-servicebus/default.nix
@@ -3,6 +3,7 @@
, fetchPypi
, uamqp
, azure-common
+, azure-core
, msrestazure
, futures
, isPy3k
@@ -10,17 +11,18 @@
buildPythonPackage rec {
pname = "azure-servicebus";
- version = "0.50.3";
+ version = "7.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "2b1e60c81fcf5b6a5bb3ceddb27f24543f479912e39a4706a390a16d8c0a71f4";
+ sha256 = "875527251c1fed99fcb90597c6abb7daa4bc0ed88e080b4c36f897b704668450";
};
buildInputs = [
uamqp
azure-common
+ azure-core
msrestazure
] ++ lib.optionals (!isPy3k) [
futures