blob: 222933a85dd62cc57df0b620132eb682cc2f7eb9 (
about) (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
buildPythonPackage,
docopt,
fetchPypi,
freezegun,
pytestCheckHook,
pythonOlder,
selenium,
setuptools,
}:
buildPythonPackage rec {
pname = "httpserver";
version = "1.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-W8Pa+CUS8vCzEcymjY6no5GMdSDSZs4bhmDtRsR4wuA=";
};
build-system = [ setuptools ];
dependencies = [ docopt ];
nativeCheckInputs = [
freezegun
selenium
pytestCheckHook
];
pythonImportsCheck = [ "httpserver" ];
disabledTestPaths = [
# Tests want driver for Firefox
"tests/test_selenium.py"
];
meta = {
description = "Asyncio implementation of an HTTP server";
homepage = "https://github.com/thomwiggers/httpserver";
license = with lib.licenses; [ bsd3 ];
maintainers = [ ];
mainProgram = "httpserver";
};
}
|