2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2021-07-03 13:37:24 +02:00
|
|
|
, requests, pyjwt, python-dateutil }:
|
2017-07-19 11:04:59 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "adal";
|
2021-06-18 23:47:07 +02:00
|
|
|
version = "1.2.7";
|
2017-07-19 11:04:59 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 23:47:07 +02:00
|
|
|
sha256 = "d74f45b81317454d96e982fd1c50e6fb5c99ac2223728aea8764433a39f566f1";
|
2017-07-19 11:04:59 +02:00
|
|
|
};
|
|
|
|
|
2021-07-03 13:37:24 +02:00
|
|
|
propagatedBuildInputs = [ requests pyjwt python-dateutil ];
|
2017-07-19 11:04:59 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-07-19 11:04:59 +02:00
|
|
|
description = "Library to make it easy for python application to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/AzureAD/azure-activedirectory-library-for-python";
|
2017-07-19 11:04:59 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ phreedom ];
|
|
|
|
};
|
|
|
|
}
|