blob: 9b65a6341ced61434efb8a757acf79b423f29c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
fetchPypi,
buildPythonPackage,
docopt,
}:
buildPythonPackage rec {
pname = "httpserver";
version = "1.1.0";
format = "setuptools";
buildInputs = [ docopt ];
# Tests pull in lots of other dependencies to emulate different web
# drivers.
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "1q62g324dvb0hqdwwrnj41sqr4d3ly78v9nc26rz1whj4pwdmhsv";
};
meta = {
description = "Asyncio implementation of an HTTP server";
mainProgram = "httpserver";
homepage = "https://github.com/thomwiggers/httpserver";
license = with lib.licenses; [ bsd3 ];
};
}
|