about summary refs log tree commit diff
path: root/pkgs/development/python-modules/msal-extensions
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-10-17 09:52:18 -0700
committerJon <jonringer@users.noreply.github.com>2020-10-17 09:58:30 -0700
commita08d761d1ede28df78b758004651a65096a196e3 (patch)
tree9f83b0b97d420bf55703ecdd4a21f46d27b061c8 /pkgs/development/python-modules/msal-extensions
parent32c5b753fae9dd2ce217dcfe53bed34f9be85abd (diff)
python2Packages.msal-extensions: fix dependencies
Diffstat (limited to 'pkgs/development/python-modules/msal-extensions')
-rw-r--r--pkgs/development/python-modules/msal-extensions/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/msal-extensions/default.nix b/pkgs/development/python-modules/msal-extensions/default.nix
index 6f3a8b89245c4..91f7ecf966762 100644
--- a/pkgs/development/python-modules/msal-extensions/default.nix
+++ b/pkgs/development/python-modules/msal-extensions/default.nix
@@ -1,9 +1,11 @@
 { buildPythonPackage
 , fetchPypi
 , lib
+, isPy27
 
 # pythonPackages
 , msal
+, pathlib2
 , portalocker
 }:
 
@@ -19,6 +21,8 @@ buildPythonPackage rec {
   propagatedBuildInputs = [
     msal
     portalocker
+  ] ++ lib.optionals isPy27 [
+    pathlib2
   ];
 
   # No tests found