{ stdenv, buildPythonPackage, fetchPypi , requests, pyjwt, dateutil }: buildPythonPackage rec { pname = "adal"; version = "0.4.7"; name = "${pname}-${version}"; src = fetchPypi { inherit pname version; sha256 = "114046ac85d0054791c21b00922f26286822bc6f2ba3716db42e7e57f762ef20"; }; 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 ]; }; }