2021-01-25 08:26:54 +00:00
|
|
|
{ lib, 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";
|
2020-10-25 09:06:49 +00:00
|
|
|
version = "1.2.5";
|
2017-07-19 10:04:59 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-25 09:06:49 +00:00
|
|
|
sha256 = "8003ba03ef04170195b3eddda8a5ab43649ef2c5f0287023d515affb1ccfcfc3";
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-19 10:04:59 +01: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 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 ];
|
|
|
|
};
|
|
|
|
}
|