1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/webob/default.nix

26 lines
470 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, pytest
}:
buildPythonPackage rec {
pname = "WebOb";
2018-11-20 10:58:37 +00:00
version = "1.8.4";
src = fetchPypi {
inherit pname version;
2018-11-20 10:58:37 +00:00
sha256 = "a48315158db05df0c47fbdd061b57ba0ba85bdd0b6ea9dca87511b4b7c798e99";
};
propagatedBuildInputs = [ nose pytest ];
meta = with stdenv.lib; {
description = "WSGI request and response object";
homepage = http://pythonpaste.org/webob/;
license = licenses.mit;
};
}