Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / httpbin / default.nix
blobace9a7041e3fa8974628fe5f0cb297f0f605cf55
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , flask
5 , flask-limiter
6 , markupsafe
7 , decorator
8 , itsdangerous
9 , raven
10 , six
11 , brotlipy
14 buildPythonPackage rec {
15   pname = "httpbin";
16   version = "0.7.0";
18   src = fetchPypi {
19     inherit pname version;
20     sha256 = "1yldvf3585zcwj4vxvfm4yr9wwlz3pa2mx2pazqz8x8mr687gcyb";
21   };
23   propagatedBuildInputs = [ brotlipy flask flask-limiter markupsafe decorator itsdangerous raven six ];
25   # No tests
26   doCheck = false;
28   meta = with lib; {
29     homepage = "https://github.com/kennethreitz/httpbin";
30     description = "HTTP Request & Response Service";
31     license = licenses.mit;
32   };