summary refs log tree commit diff
path: root/pkgs/development/python-modules/requests-toolbelt/default.nix
blob: ff3a18e7e765c6953c4c50aa17fc256a6b430182 (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
{ lib
, buildPythonPackage
, fetchPypi
, requests
, betamax
, mock
, pytest
}:

buildPythonPackage rec {
  pname = "requests-toolbelt";
  version = "0.9.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0";
  };

  checkInputs = [ betamax mock pytest ];
  propagatedBuildInputs = [ requests ];

  checkPhase = ''
    # disabled tests access the network
    py.test tests -k "not test_no_content_length_header \
                  and not test_read_file \
                  and not test_reads_file_from_url_wrapper"
  '';

  meta = {
    description = "A toolbelt of useful classes and functions to be used with python-requests";
    homepage = http://toolbelt.rtfd.org;
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ matthiasbeyer ];
  };
}