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

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

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

  propagatedBuildInputs = [ nose pytest ];

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

}