summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioquic-mitmproxy/default.nix
blob: 7fab497b26033d9ce42b784739b292183d4c3291 (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
{ lib
, buildPythonPackage
, certifi
, cryptography
, fetchFromGitHub
, pylsqpack
, pyopenssl
, pytestCheckHook
, setuptools
, wheel
}:

buildPythonPackage rec {
  pname = "aioquic-mitmproxy";
  version = "0.9.20.3";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "meitinger";
    repo = "aioquic_mitmproxy";
    rev = "refs/tags/${version}";
    hash = "sha256-VcIbtrcA0dBEE52ZD90IbXoh6L3wDUbr2kFJikts6+w=";
  };

  nativeBuildInputs = [
    setuptools
    wheel
  ];

  propagatedBuildInputs = [
    certifi
    cryptography
    pylsqpack
    pyopenssl
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "aioquic"
  ];

  meta = with lib; {
    description = "QUIC and HTTP/3 implementation in Python";
    homepage = "https://github.com/meitinger/aioquic_mitmproxy";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
  };
}