nixpkgs/pkgs/development/python-modules/adal/default.nix
2020-06-11 09:59:53 +02:00

22 lines
690 B
Nix

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