about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aenum/default.nix
blob: cc50b3b216d6a716a6329605641bb7ab4347ef1d (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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pyparsing,
  pytestCheckHook,
  pythonAtLeast,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "aenum";
  version = "3.1.15";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-jL12zRjE+HD/ObJChNPqAo++hzGljfOqWB5DTFdblVk=";
  };

  nativeBuildInputs = [ setuptools ];

  nativeCheckInputs = [
    pyparsing
    pytestCheckHook
  ];

  pythonImportsCheck = [ "aenum" ];

  disabledTests =
    [
      # https://github.com/ethanfurman/aenum/issues/27
      "test_class_nested_enum_and_pickle_protocol_four"
      "test_pickle_enum_function_with_qualname"
      "test_stdlib_inheritence"
      "test_subclasses_with_getnewargs_ex"
      "test_arduino_headers"
      "test_c_header_scanner"
      "test_extend_flag_backwards_stdlib"
    ]
    ++ lib.optionals (pythonAtLeast "3.12") [
      # AttributeError: <enum 'Color'> has no attribute 'value'. Did you mean: 'blue'?
      "test_extend_enum_shadow_property_stdlib"
    ];

  meta = with lib; {
    description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants";
    homepage = "https://github.com/ethanfurman/aenum";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}