about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mock-services/default.nix
blob: e1c52662f3894e7e06a89c67d06d09c0a908f95f (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, attrs
, funcsigs
, requests-mock
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "mock-services";
  version = "0.3.1";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "peopledoc";
    repo = "mock-services";
    rev = version;
    sha256 = "1rqyyfwngi1xsd9a81irjxacinkj1zf6nqfvfxhi55ky34x5phf9";
  };

  patches = [
    # Fix issues due to internal API breaking in latest versions of requests-mock
    (fetchpatch {
      url = "https://github.com/peopledoc/mock-services/commit/88d3a0c9ef4dd7d5e011068ed2fdbbecc4a1a03a.patch";
      sha256 = "0a4pwxr33kr525sp8q4mb4cr3n2b51mj2a3052lhg6brdbi4gnms";
    })
  ];

  propagatedBuildInputs = [
    attrs
    funcsigs
    requests-mock
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  disabledTests = [
    # require networking
    "test_real_http_1"
    "test_restart_http_mock"
    "test_start_http_mock"
    "test_stop_http_mock"
  ];

  pythonImportsCheck = [ "mock_services" ];

  meta = with lib; {
    description = "Mock an entire service API based on requests-mock";
    homepage = "https://github.com/peopledoc/mock-services";
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}