about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-storage-queue
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-09-18 18:22:15 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-09-18 18:22:15 +0200
commit017a7431a5c79c09e308b12dd55677a5dbdac933 (patch)
tree2590aea30b47a438c9f8801502dda15f72340246 /pkgs/development/python-modules/azure-storage-queue
parent5b0fe246b3191ed7fb62424d588e6251ee09c3ee (diff)
python311Packages.azure-storage-queue: 12.6.0 -> 12.7.1
Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-queue_12.7.1/sdk/storage/azure-storage-queue/CHANGELOG.md
Diffstat (limited to 'pkgs/development/python-modules/azure-storage-queue')
-rw-r--r--pkgs/development/python-modules/azure-storage-queue/default.nix34
1 files changed, 25 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/azure-storage-queue/default.nix b/pkgs/development/python-modules/azure-storage-queue/default.nix
index c98609a6df785..0990203d42dda 100644
--- a/pkgs/development/python-modules/azure-storage-queue/default.nix
+++ b/pkgs/development/python-modules/azure-storage-queue/default.nix
@@ -1,33 +1,49 @@
 { lib
+, azure-core
 , buildPythonPackage
+, cryptography
 , fetchPypi
-, azure-common
-, azure-storage-common
-, msrest
+, isodate
+, pythonOlder
+, typing-extensions
 }:
 
 buildPythonPackage rec {
   pname = "azure-storage-queue";
-  version = "12.6.0";
+  version = "12.7.1";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-GaAfHYYLXll4nhcnzmrsTwkDrFYwelZMT6d3+zi2tQ0=";
-    extension = "zip";
+    hash = "sha256-zBt5z13ZRxB1xMLA3xEWf7mSoil43JLl8q46w0n/avY=";
   };
 
   propagatedBuildInputs = [
-    azure-common
-    azure-storage-common
-    msrest
+    azure-core
+    cryptography
+    isodate
+    typing-extensions
   ];
 
+  passthru.optional-dependencies = {
+    aio = [
+      azure-core
+    ] ++ azure-core.optional-dependencies.aio;
+  };
+
   # has no tests
   doCheck = false;
 
+  pythonImportsCheck = [
+    "azure.storage.queue"
+  ];
+
   meta = with lib; {
     description = "Client library for Microsoft Azure Storage services containing the queue service APIs";
     homepage = "https://github.com/Azure/azure-sdk-for-python";
+    changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-queue_${version}/sdk/storage/azure-storage-queue/CHANGELOG.md";
     license = licenses.mit;
     maintainers = with maintainers; [ cmcdragonkai ];
   };