summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-servicebus
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-06-08 22:02:06 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-06-08 18:29:40 -0700
commit0fa2b43956e89a71fa1613b38f0ce6140610102b (patch)
tree64f82926cd32dc7b63a86c464f76a8f5a5c11e4d /pkgs/development/python-modules/azure-servicebus
parent06c19c70ccfb873fd08ae729ecad4910ca4719be (diff)
downloadnixpkgs-0fa2b43956e89a71fa1613b38f0ce6140610102b.tar
nixpkgs-0fa2b43956e89a71fa1613b38f0ce6140610102b.tar.gz
nixpkgs-0fa2b43956e89a71fa1613b38f0ce6140610102b.tar.bz2
nixpkgs-0fa2b43956e89a71fa1613b38f0ce6140610102b.tar.lz
nixpkgs-0fa2b43956e89a71fa1613b38f0ce6140610102b.tar.xz
nixpkgs-0fa2b43956e89a71fa1613b38f0ce6140610102b.tar.zst
nixpkgs-0fa2b43956e89a71fa1613b38f0ce6140610102b.zip
python3Packages.azure-servicebus: 7.2.0 -> 7.3.0
Diffstat (limited to 'pkgs/development/python-modules/azure-servicebus')
-rw-r--r--pkgs/development/python-modules/azure-servicebus/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/azure-servicebus/default.nix b/pkgs/development/python-modules/azure-servicebus/default.nix
index d89def355f9..93f70108c35 100644
--- a/pkgs/development/python-modules/azure-servicebus/default.nix
+++ b/pkgs/development/python-modules/azure-servicebus/default.nix
@@ -11,12 +11,12 @@
 
 buildPythonPackage rec {
   pname = "azure-servicebus";
-  version = "7.2.0";
+  version = "7.3.0";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "919e81d6d9e6e098dbb7abf51d90282a73c0071846b104e70488417cd5d07863";
+    sha256 = "sha256-NigQxqZjekZjlu6wSrziVwbEBclxfwSK4svd0eHPKr8=";
   };
 
   propagatedBuildInputs = [
@@ -35,7 +35,7 @@ buildPythonPackage rec {
   pythonImportsCheck = lib.optionals isPy3k [ "azure.servicebus" ];
 
   meta = with lib; {
-    description = "This is the Microsoft Azure Service Bus Client Library";
+    description = "Microsoft Azure Service Bus Client Library";
     homepage = "https://github.com/Azure/azure-sdk-for-python";
     license = licenses.mit;
     maintainers = with maintainers; [ maxwilson ];