pythonPackages.httpbin: Add version 0.2.0

This commit is contained in:
Abhinav Gupta 2014-08-12 19:31:24 -07:00
parent 48c5574f5a
commit 6e886678d1

View file

@ -3752,6 +3752,24 @@ rec {
};
});
httpbin = buildPythonPackage rec {
name = "httpbin-0.2.0";
src = fetchurl {
url = "https://pypi.python.org/packages/source/h/httpbin/${name}.tar.gz";
md5 = "9b2bb2fab45f5fa839e9a776a64d6089";
};
propagatedBuildInputs = [ flask markupsafe decorator itsdangerous six ];
meta = {
homepage = https://github.com/kennethreitz/httpbin;
description = "HTTP Request & Response Service";
license = licenses.mit;
};
};
httplib2 = buildPythonPackage rec {
name = "httplib2-0.9";