about summary refs log tree commit diff
path: root/pkgs/development/python-modules/adal/default.nix
blob: 22ed76b9e59cef11b20cc8f80ae91a41c3c7f7f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi
, requests, pyjwt }:

buildPythonPackage rec {
  pname = "adal";
  version = "0.4.6";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7c5bbf4d8a17d535e6e857b28a41cedddc2767fc57424c15d484fa779bb97325";
  };

  propagatedBuildInputs =  [ requests pyjwt ];

  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 ];
  };
}