a57aabe18f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-adal/versions
22 lines
676 B
Nix
22 lines
676 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, requests, pyjwt, dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "adal";
|
|
version = "1.2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1hgm62wil1avc3h0dwbks2v6l19xfsjl3azai16llsyp70y92lms";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|