3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #3557 from abhinav/master

pythonPackages.httpbin: Add version 0.2.0
This commit is contained in:
Domen Kožar 2014-08-13 09:25:33 +02:00
commit b1b5eb8bed

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";