about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/openapi-core/default.nix
blob: 199ea38ae4ab8e81c15e1129563fc694522a9a18 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{ lib
, attrs
, buildPythonPackage
, dictpath
, django
, djangorestframework
, falcon
, fetchFromGitHub
, flask
, isodate
, lazy-object-proxy
, mock
, more-itertools
, openapi-schema-validator
, openapi-spec-validator
, parse
, pytestCheckHook
, pythonOlder
, responses
, six
, webob
, werkzeug
, python
}:

buildPythonPackage rec {
  pname = "openapi-core";
  version = "0.14.2";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "p1c2u";
    repo = "openapi-core";
    rev = version;
    hash = "sha256-+VyNPSq7S1Oz4eGf+jaeRTx0lZ8pUA+G+KZ/5PyK+to=";
  };

  postPatch = ''
    sed -i "/^addopts/d" setup.cfg
  '';

  propagatedBuildInputs = [
    attrs
    dictpath
    isodate
    lazy-object-proxy
    more-itertools
    openapi-schema-validator
    openapi-spec-validator
    parse
    six
    werkzeug
  ];

  checkInputs = [
    django
    djangorestframework
    falcon
    flask
    mock
    pytestCheckHook
    responses
    webob
  ];

  disabledTestPaths = [
    # AttributeError: 'str' object has no attribute '__name__'
    "tests/integration/validation"
    # Unable to detect SECRET_KEY and ROOT_URLCONF
    "tests/integration/contrib/test_django.py"
  ];

  disabledTests = [
    # TypeError: Unexpected keyword arguments passed to pytest.raises: message
    "test_string_format_invalid_value"
    # Needs a fix for new PyYAML
    "test_django_rest_framework_apiview"
  ];

  pythonImportsCheck = [
    "openapi_core"
    "openapi_core.validation.request.validators"
    "openapi_core.validation.response.validators"
  ];

  meta = with lib; {
    description = "Client-side and server-side support for the OpenAPI Specification v3";
    homepage = "https://github.com/p1c2u/openapi-core";
    license = licenses.bsd3;
    maintainers = with maintainers; [ dotlambda ];
  };
}