1{ lib
2, buildPythonPackage
3, fetchPypi
4, flask
5, flask-limiter
6, markupsafe
7, decorator
8, itsdangerous
9, raven
10, six
11, brotlipy
12}:
13
14buildPythonPackage rec {
15 pname = "httpbin";
16 version = "0.7.0";
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "1yldvf3585zcwj4vxvfm4yr9wwlz3pa2mx2pazqz8x8mr687gcyb";
21 };
22
23 propagatedBuildInputs = [ brotlipy flask flask-limiter markupsafe decorator itsdangerous raven six ];
24
25 # No tests
26 doCheck = false;
27
28 meta = with lib; {
29 homepage = "https://github.com/kennethreitz/httpbin";
30 description = "HTTP Request & Response Service";
31 license = licenses.mit;
32 };
33}