about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/httpx-auth/default.nix
blob: 5fc267bfb25f2b46901f8fc619e2ff5836d257bf (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, httpx
, pyjwt
, pytest-asyncio
, pytest-httpx
, pytestCheckHook
, pythonOlder
, setuptools
, setuptools-scm
, time-machine
}:

buildPythonPackage rec {
  pname = "httpx-auth";
  version = "0.22.0";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "Colin-b";
    repo = "httpx_auth";
    rev = "refs/tags/v${version}";
    hash = "sha256-7azPyep+R55CdRwbdo20y4YNV47c8CwXgOj4q4t25oc=";
  };

  nativeBuildInputs = [
    setuptools
    setuptools-scm
  ];

  propagatedBuildInputs = [
    httpx
  ];

  nativeCheckInputs = [
    pyjwt
    pytest-asyncio
    pytest-httpx
    pytestCheckHook
    time-machine
  ];

  pythonImportsCheck = [
    "httpx_auth"
  ];

  __darwinAllowLocalNetworking = true;

  meta = with lib; {
    description = "Authentication classes to be used with httpx";
    homepage = "https://github.com/Colin-b/httpx_auth";
    changelog = "https://github.com/Colin-b/httpx_auth/blob/${src.rev}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ natsukium ];
  };
}