mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Merge pull request #3557 from abhinav/master
pythonPackages.httpbin: Add version 0.2.0
This commit is contained in:
commit
b1b5eb8bed
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user