1 { lib, fetchPypi, buildPythonPackage, docopt, pythonOlder }:
3 buildPythonPackage rec {
7 buildInputs = [ docopt ];
9 # Tests pull in lots of other dependencies to emulate different web
13 # Because it uses asyncio
14 disabled = pythonOlder "3.4";
17 inherit pname version;
18 sha256 = "1q62g324dvb0hqdwwrnj41sqr4d3ly78v9nc26rz1whj4pwdmhsv";
22 description = "Asyncio implementation of an HTTP server";
23 homepage = "https://github.com/thomwiggers/httpserver";
24 license = with lib.licenses; [ bsd3 ];