Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 472 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5, pytest 6}: 7 8buildPythonPackage rec { 9 pname = "WebOb"; 10 version = "1.8.6"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "aa3a917ed752ba3e0b242234b2a373f9c4e2a75d35291dcbe977649bd21fd108"; 15 }; 16 17 propagatedBuildInputs = [ nose pytest ]; 18 19 meta = with stdenv.lib; { 20 description = "WSGI request and response object"; 21 homepage = "http://pythonpaste.org/webob/"; 22 license = licenses.mit; 23 }; 24 25}