pythonPackages.msal-extensions: init at 0.1.3

This commit is contained in:
Kevin Amado 2019-12-28 04:05:17 -05:00
parent 37148a82b2
commit 1da8594596
No known key found for this signature in database
GPG Key ID: 04D0CEAF916A9A40
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ buildPythonPackage
, fetchPypi
, lib
# pythonPackages
, msal
, portalocker
}:
buildPythonPackage rec {
pname = "msal-extensions";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "1p05cbfksnhijx1il7s24js2ydzgxbpiasf607qdpb5sljlp3qar";
};
propagatedBuildInputs = [
msal
portalocker
];
# No tests found
doCheck = false;
meta = with lib; {
description = "The Microsoft Authentication Library Extensions (MSAL-Extensions) for Python";
homepage = "https://github.com/AzureAD/microsoft-authentication-library-for-python";
license = licenses.mit;
maintainers = with maintainers; [
kamadorueda
];
};
}

View File

@ -839,6 +839,8 @@ in {
msal = callPackage ../development/python-modules/msal { };
msal-extensions = callPackage ../development/python-modules/msal-extensions { };
msrest = callPackage ../development/python-modules/msrest { };
msrestazure = callPackage ../development/python-modules/msrestazure { };