29 buildPythonPackage rec {
33 disabled = pythonOlder "3.5";
35 src = fetchFromGitHub {
38 rev = "refs/tags/${version}";
39 hash = "sha256-5Lhz4qI/x7yK9tqQg4CvYNug+fp9l6ErNGH1pVybZ6c=";
44 ] ++ lib.optionals (!isPyPy) [
48 __darwinAllowLocalNetworking = true;
52 cp -R tests examples $TMPDIR
61 # https://github.com/falconry/falcon/blob/master/requirements/tests
80 ] ++ lib.optionals (pythonOlder "3.10") [
89 # needs a running server
90 "tests/asgi/test_asgi_servers.py"
94 description = "An unladen web framework for building APIs and app backends";
95 homepage = "https://falconframework.org/";
96 license = licenses.asl20;
97 maintainers = with maintainers; [ desiderius ];