10 buildPythonPackage rec {
16 inherit pname version;
17 hash = "sha256-pIhS3HoFE1PT5N491VkM0l3jcLz9lKciN1YeMUzrDIg=";
20 nativeBuildInputs = [ setuptools ];
22 nativeCheckInputs = [ pytestCheckHook ];
32 "test_error_in_generator_callback"
36 ++ lib.optionals (pythonAtLeast "3.12") [
37 # https://github.com/bottlepy/bottle/issues/1422
38 # ModuleNotFoundError: No module named 'bottle.ext'
44 __darwinAllowLocalNetworking = true;
47 homepage = "https://bottlepy.org/";
48 description = "Fast and simple micro-framework for small web-applications";
49 mainProgram = "bottle.py";
50 downloadPage = "https://github.com/bottlepy/bottle";
51 license = licenses.mit;
52 maintainers = with maintainers; [ koral ];