about summary refs log tree commit diff
path: root/pkgs/development/python-modules/webob/default.nix
blob: 201893c2536b66a206fdff28cf1336d880b70505 (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
{ lib
, buildPythonPackage
, fetchPypi
, nose
, pytest
}:

buildPythonPackage rec {
  pname = "WebOb";
  version = "1.8.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b64ef5141be559cfade448f044fa45c2260351edcb6a8ef6b7e00c7dcef0c323";
  };

  propagatedBuildInputs = [ nose pytest ];

  meta = with lib; {
    description = "WSGI request and response object";
    homepage = "http://pythonpaste.org/webob/";
    license = licenses.mit;
  };

}