summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-09-29 00:13:00 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2023-10-06 15:17:00 -0700
commit6d882d7f54c14caf437b3355e44a0b53937804ef (patch)
treeb38fe99f1c229a89c7df7fed76af849d08f15da1
parent5e7e4ae14430b23b683ea9e03847c8db1688223f (diff)
downloadnixpkgs-6d882d7f54c14caf437b3355e44a0b53937804ef.tar
nixpkgs-6d882d7f54c14caf437b3355e44a0b53937804ef.tar.gz
nixpkgs-6d882d7f54c14caf437b3355e44a0b53937804ef.tar.bz2
nixpkgs-6d882d7f54c14caf437b3355e44a0b53937804ef.tar.lz
nixpkgs-6d882d7f54c14caf437b3355e44a0b53937804ef.tar.xz
nixpkgs-6d882d7f54c14caf437b3355e44a0b53937804ef.tar.zst
nixpkgs-6d882d7f54c14caf437b3355e44a0b53937804ef.zip
python311Packages.azure-storage-blob: 12.17.0 -> 12.18.2
Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-blob_12.18.2/sdk/storage/azure-storage-blob/CHANGELOG.md
-rw-r--r--pkgs/development/python-modules/azure-storage-blob/default.nix11
1 files changed, 2 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/azure-storage-blob/default.nix b/pkgs/development/python-modules/azure-storage-blob/default.nix
index a537e32c254..e0846bc6051 100644
--- a/pkgs/development/python-modules/azure-storage-blob/default.nix
+++ b/pkgs/development/python-modules/azure-storage-blob/default.nix
@@ -1,36 +1,29 @@
 { lib
-, azure-common
 , azure-core
-, azure-storage-common
 , buildPythonPackage
 , cryptography
 , fetchPypi
 , isodate
-, msrest
 , pythonOlder
 , typing-extensions
 }:
 
 buildPythonPackage rec {
   pname = "azure-storage-blob";
-  version = "12.17.0";
+  version = "12.18.2";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    extension = "zip";
-    hash = "sha256-wUt4WhcFCzD8MmoxW9rmvEoHiFX0+UpMMDrXSkjcjGM=";
+    hash = "sha256-4Rk1NImB/8AFuEi1XbJcBPLR+Q4e4zAAZZkGt2PPFMg=";
   };
 
   propagatedBuildInputs = [
-    azure-common
     azure-core
-    azure-storage-common
     cryptography
     isodate
-    msrest
     typing-extensions
   ];