nixpkgs/pkgs/development/python-modules/webob/default.nix

26 lines
462 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, nose
, pytest
}:
buildPythonPackage rec {
pname = "WebOb";
2020-05-09 12:02:04 +02:00
version = "1.8.6";
src = fetchPypi {
inherit pname version;
2020-05-09 12:02:04 +02:00
sha256 = "aa3a917ed752ba3e0b242234b2a373f9c4e2a75d35291dcbe977649bd21fd108";
};
propagatedBuildInputs = [ nose pytest ];
meta = with lib; {
description = "WSGI request and response object";
homepage = "http://pythonpaste.org/webob/";
license = licenses.mit;
};
}