22 lines
688 B
Nix
22 lines
688 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, requests, pyjwt, dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "adal";
|
|
version = "1.0.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "4c020807b3f3cfd90f59203077dd5e1f59671833f8c3c5028ec029ed5072f9ce";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|