2017-07-19 10:04:59 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-06-25 17:59:23 +01:00
|
|
|
, requests, pyjwt, dateutil }:
|
2017-07-19 10:04:59 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "adal";
|
2019-10-16 10:43:01 +01:00
|
|
|
version = "1.2.2";
|
2017-07-19 10:04:59 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-16 10:43:01 +01:00
|
|
|
sha256 = "5a7f1e037c6290c6d7609cab33a9e5e988c2fbec5c51d1c4c649ee3faff37eaf";
|
2017-07-19 10:04:59 +01:00
|
|
|
};
|
|
|
|
|
2017-06-25 17:59:23 +01:00
|
|
|
propagatedBuildInputs = [ requests pyjwt dateutil ];
|
2017-07-19 10:04:59 +01: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 02:11:51 +01:00
|
|
|
homepage = "https://github.com/AzureAD/azure-activedirectory-library-for-python";
|
2017-07-19 10:04:59 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ phreedom ];
|
|
|
|
};
|
|
|
|
}
|