about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/webob/default.nix
blob: bd2e0574a476693a6cf8b652f5a4a24a9061738f (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;
  };

}