python3Packages.azure-servicebus: 0.50.3 -> 7.0.0

This commit is contained in:
Jonathan Ringer 2020-11-28 08:45:50 -08:00 committed by Jonathan Ringer
parent 98c4cec2a1
commit 7bc1c8ed3e
2 changed files with 6 additions and 2 deletions

View file

@ -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
];

View file

@ -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