File size: 1,170 Bytes
065fee7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{% set name = "msal-extensions" %}

package:
  name: "{{ name|lower }}"
  version: {{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}

source:
  url: {{ environ.get('MSALEXTENSIONS_SOURCE_DISTRIBUTION', '') }}

build:
  noarch: python
  number: 0
  script: "{{ PYTHON }} -m pip install . -vv"

requirements:
  host:
    - msal >=2023.06.01
    - pip
    - portalocker
    - python
  run:
    - msal >=2023.06.01
    - portalocker
    - pyjwt
    - python

test:
  imports:
    - msal_extensions
  requires:
    - pytest

about:
  home: "https://github.com/AzureAD/microsoft-authentication-library-for-python"
  license: MIT
  license_family: MIT
  license_file: 
  summary: "Microsoft Authentication Extensions for Python"
  description: |
    The Microsoft Authentication Extensions for Python offers secure mechanisms for 
    client applications to perform cross-platform token cache serialization and persistence. 
    It gives additional support to the Microsoft Authentication Library for Python (MSAL).
    Please see https://aka.ms/azsdk/conda/releases/msal-extensions for version details.
  doc_url: 
  dev_url: 

extra:
  recipe-maintainers:
    - xiangyan99