about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/httpretty/default.nix
blob: 1bcf892cbf476bd3b84cdb9629c018d994eac012 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, tornado
, requests
, httplib2
, sure
, nose
, coverage
, certifi
, urllib3
, rednose
, nose-randomly
, six
, mock
}:

buildPythonPackage rec {
  pname = "httpretty";
  version = "0.9.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "01b52d45077e702eda491f4fe75328d3468fd886aed5dcc530003e7b2b5939dc";
  };

  checkInputs = [ nose sure coverage mock rednose
  # Following not declared in setup.py
    nose-randomly requests tornado httplib2
  ];
  propagatedBuildInputs = [ six ];

  __darwinAllowLocalNetworking = true;

  meta = with stdenv.lib; {
    homepage = "https://falcao.it/HTTPretty/";
    description = "HTTP client request mocking tool";
    license = licenses.mit;
  };

}