mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22 lines
680 B
Nix
22 lines
680 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, requests, pyjwt, dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "adal";
|
|
version = "1.2.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "8003ba03ef04170195b3eddda8a5ab43649ef2c5f0287023d515affb1ccfcfc3";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests pyjwt dateutil ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|