summary refs log tree commit diff
path: root/pkgs/development/python-modules/webob/default.nix
blob: 77e91feebac67dfac015524f69a5f68969c96128 (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.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "05aaab7975e0ee8af2026325d656e5ce14a71f1883c52276181821d6d5bf7086";
  };

  propagatedBuildInputs = [ nose pytest ];

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

}