2017-07-19 11:04:59 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-06-25 18:59:23 +02:00
|
|
|
, requests, pyjwt, dateutil }:
|
2017-07-19 11:04:59 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "adal";
|
2020-06-06 08:46:56 +02:00
|
|
|
version = "1.2.4";
|
2017-07-19 11:04:59 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 08:46:56 +02:00
|
|
|
sha256 = "7a15d22b1ee7ce1be92441199958748982feba6b7dec35fbf60f9b607bad1bc0";
|
2017-07-19 11:04:59 +02:00
|
|
|
};
|
|
|
|
|
2017-06-25 18:59:23 +02:00
|
|
|
propagatedBuildInputs = [ requests pyjwt dateutil ];
|
2017-07-19 11:04:59 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|