about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-11-30 09:01:02 +0100
committerGitHub <noreply@github.com>2023-11-30 09:01:02 +0100
commitb410b4c68058810ec9a61e8f08a35e2a0255a37a (patch)
tree3e5f4e88b9d921e9c5c50f3ed96d8ea59d61723f /pkgs/development/python-modules
parentb4a01cdf31df833ad25acf54386c2afae06fea48 (diff)
parentb03f48beaf1479795f55143b15f52aacbcb38d92 (diff)
Merge pull request #268667 from fabaff/azure-identity-bump
python311Packages.azure-identity: 1.14.0 -> 1.15.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/azure-identity/default.nix28
1 files changed, 9 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/azure-identity/default.nix b/pkgs/development/python-modules/azure-identity/default.nix
index a2cdf1f929c31..624ce81e5bcaf 100644
--- a/pkgs/development/python-modules/azure-identity/default.nix
+++ b/pkgs/development/python-modules/azure-identity/default.nix
@@ -1,41 +1,30 @@
 { lib
+, azure-common
+, azure-mgmt-core
 , buildPythonPackage
 , fetchPypi
-, azure-common
-, azure-core
-, cryptography
-, mock
+, isodate
 , msal
-, msal-extensions
-, msrest
-, msrestazure
 , pythonOlder
-, six
 }:
 
 buildPythonPackage rec {
   pname = "azure-identity";
-  version = "1.14.0";
+  version = "1.15.0";
   format = "setuptools";
 
-  disabled = pythonOlder "3.6";
+  disabled = pythonOlder "3.8";
 
   src = fetchPypi {
     inherit pname version;
-    extension = "zip";
-    hash = "sha256-ckQXmfjFyJv+IQJpZeJmZyp8XQUMLGURnviZ3VNi4rE=";
+    hash = "sha256-TCj8JGt/kmVhDrUmHWWTEYPQGaI9Sw6ZNX+ssubCJ8g=";
   };
 
   propagatedBuildInputs = [
     azure-common
-    azure-core
-    cryptography
-    mock
+    azure-mgmt-core
+    isodate
     msal
-    msal-extensions
-    msrest
-    msrestazure
-    six
   ];
 
   pythonImportsCheck = [
@@ -49,6 +38,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Microsoft Azure Identity Library for Python";
     homepage = "https://github.com/Azure/azure-sdk-for-python";
+    changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-identity_${version}/sdk/keyvault/azure-mgmt-keyvault/CHANGELOG.md";
     license = licenses.mit;
     maintainers = with maintainers; [ kamadorueda ];
   };