22 lines
688 B
Nix
22 lines
688 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, requests, pyjwt, dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "adal";
|
|
version = "1.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b6edd095be66561382bdaa59d40b04490e93149fb3b7fa44c1fa5504eed5b8b9";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests pyjwt dateutil ];
|
|
|
|
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";
|
|
homepage = https://github.com/AzureAD/azure-activedirectory-library-for-python;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ phreedom ];
|
|
};
|
|
}
|