about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/responses/default.nix
blob: cff31f782c5a7fbab6fce7ac0ca6e5846654e6a7 (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
{ lib
, buildPythonPackage
, cookies
, fetchPypi
, mock
, pytest-localserver
, pytestCheckHook
, pythonOlder
, requests
, six
, urllib3
}:

buildPythonPackage rec {
  pname = "responses";
  version = "0.16.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-ouOsoqgnfmElfNOxwVSx3Q14Kxrj04t/o3y+P+tTF5E=";
  };

  propagatedBuildInputs = [
    requests
    urllib3
    six
  ] ++ lib.optionals (pythonOlder "3.4") [
    cookies
  ] ++ lib.optionals (pythonOlder "3.3") [
    mock
  ];

  checkInputs = [
    pytest-localserver
    pytestCheckHook
  ];

  pythonImportsCheck = [ "responses" ];

  meta = with lib; {
    description = "Python module for mocking out the requests Python library";
    homepage = "https://github.com/getsentry/responses";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}