about summary refs log tree commit diff
path: root/pkgs/development/python-modules/types-lxml/default.nix
blob: 21a8dc882161381bf99d9268c403dfaa054859dc (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
61
62
63
64
65
66
67
68
69
{ lib
, buildPythonPackage
, fetchFromGitHub
, lxml
, pyright
, pytestCheckHook
, pythonOlder
, setuptools
, setuptools-scm
, typeguard
, types-beautifulsoup4
, typing-extensions
}:

buildPythonPackage rec {
  pname = "types-lxml";
  version = "2024.02.09";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "abelcheung";
    repo = "types-lxml";
    rev = "refs/tags/${version}";
    hash = "sha256-vmRbzfwlGGxd64KX8j4B3O9c7kg7hXSsCEYq3WAFdmk=";
  };

  nativeBuildInputs = [
    setuptools
    setuptools-scm
  ];

  propagatedBuildInputs = [
    types-beautifulsoup4
    typing-extensions
  ];

  nativeCheckInputs = [
    lxml
    pyright
    pytestCheckHook
    typeguard
  ];

  pythonImportsCheck = [
    "lxml-stubs"
  ];

  disabledTests = [
    # AttributeError: 'bytes' object has no attribute 'find_class'
    # https://github.com/abelcheung/types-lxml/issues/34
    "test_bad_methodfunc"
    "test_find_class"
    "test_find_rel_links"
    "test_iterlinks"
    "test_make_links_absolute"
    "test_resolve_base_href"
    "test_rewrite_links"
  ];

  meta = with lib; {
    description = "Complete lxml external type annotation";
    homepage = "https://github.com/abelcheung/types-lxml";
    changelog = "https://github.com/abelcheung/types-lxml/releases/tag/${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}