summary refs log tree commit diff
path: root/pkgs/development/python-modules/dependency-injector/default.nix
blob: d220bd51ac1c469987743e1c902ab3c71f7086db (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
{ lib
, aiohttp
, buildPythonPackage
, fastapi
, fetchFromGitHub
, flask
, httpx
, mypy-boto3-s3
, numpy
, scipy
, pydantic
, pytestCheckHook
, pyyaml
, six
}:

buildPythonPackage rec {
  pname = "dependency-injector";
  version = "4.34.0";

  src = fetchFromGitHub {
    owner = "ets-labs";
    repo = "python-dependency-injector";
    rev = version;
    sha256 = "sha256-MI0+saRe4Zi77otVPGYxrX9z8Jc5K1A1sCxHBS0uta0=";
  };

  propagatedBuildInputs = [
    six
  ];

  checkInputs = [
    aiohttp
    fastapi
    flask
    httpx
    mypy-boto3-s3
    numpy
    pydantic
    scipy
    pytestCheckHook
    pyyaml
  ];

  postPatch = ''
    substituteInPlace requirements.txt \
      --replace "six>=1.7.0,<=1.15.0" "six"
  '';

  disabledTestPaths = [
    # There is no unique identifier to disable the one failing test
    "tests/unit/ext/test_aiohttp_py35.py"
  ];

  pythonImportsCheck = [ "dependency_injector" ];

  meta = with lib; {
    description = "Dependency injection microframework for Python";
    homepage = "https://github.com/ets-labs/python-dependency-injector";
    license = licenses.bsd3;
    maintainers = with maintainers; [ gerschtli ];
  };
}