summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-03-03 08:03:15 -0800
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-14 00:29:04 +0100
commitd713dfae5e9a5853c394221281683ad98c9940b4 (patch)
treef0d537da6fb495f85cf38fccbd9f7c0c55c39613
parentb8e5d4bb92de8e873a712ceb992fd2186558f4d2 (diff)
downloadnixpkgs-d713dfae5e9a5853c394221281683ad98c9940b4.tar
nixpkgs-d713dfae5e9a5853c394221281683ad98c9940b4.tar.gz
nixpkgs-d713dfae5e9a5853c394221281683ad98c9940b4.tar.bz2
nixpkgs-d713dfae5e9a5853c394221281683ad98c9940b4.tar.lz
nixpkgs-d713dfae5e9a5853c394221281683ad98c9940b4.tar.xz
nixpkgs-d713dfae5e9a5853c394221281683ad98c9940b4.tar.zst
nixpkgs-d713dfae5e9a5853c394221281683ad98c9940b4.zip
python3Packges.azure-identity: relax msal-extensions bounds
-rw-r--r--pkgs/development/python-modules/azure-identity/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-identity/default.nix b/pkgs/development/python-modules/azure-identity/default.nix
index ea0696e294a..44660e56f42 100644
--- a/pkgs/development/python-modules/azure-identity/default.nix
+++ b/pkgs/development/python-modules/azure-identity/default.nix
@@ -24,6 +24,11 @@ buildPythonPackage rec {
     sha256 = "sha256-Ag/w5HFXhS5KrIo62waEGCcUfyepTL50qQRCXY5i2Tw=";
   };
 
+  postPatch = ''
+    substituteInPlace setup.py \
+      --replace "msal-extensions~=0.3.0" "msal-extensions"
+  '';
+
   propagatedBuildInputs = [
     azure-common
     azure-core