about summary refs log tree commit diff
path: root/pkgs/development/python-modules/msgraph-core/default.nix
blob: f8ee81afbac244f598dff5c81c1ee5b2257c8b75 (plain) (blame)
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
50
51
52
53
54
55
56
57
58
59
60
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, httpx
, microsoft-kiota-abstractions
, microsoft-kiota-authentication-azure
 ,microsoft-kiota-http
, requests
, azure-identity
, pytestCheckHook
, responses
}:

buildPythonPackage rec {
  pname = "msgraph-core";
  version = "1.0.0";
  pyproject = true;

  disabled = pythonOlder "3.5";


  src = fetchFromGitHub {
    owner = "microsoftgraph";
    repo = "msgraph-sdk-python-core";
    rev = "refs/tags/v${version}";
    hash = "sha256-VizjN7sXqPvo9VOSaaUnogTlUDJ1OA2COYNTcVRqhJA=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    httpx
    microsoft-kiota-abstractions
    microsoft-kiota-authentication-azure
    microsoft-kiota-http
    requests

  ];

  nativeCheckInputs = [
    azure-identity
    pytestCheckHook
    responses
  ];

  pythonImportsCheck = [
    "msgraph_core"
  ];

  meta = {
    description = "Core component of the Microsoft Graph Python SDK";
    homepage = "https://github.com/microsoftgraph/msgraph-sdk-python-core";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}