Martin Weinelt
2024-11-18 19:24:10 +01:00
parent 56224891d2
commit 7e6ea1b67f
@@ -30,18 +30,19 @@
buildPythonPackage rec {
pname = "falcon";
version = "3.1.3";
format = "pyproject";
version = "4.0.2";
pyproject = true;
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "falconry";
repo = pname;
repo = "falcon";
rev = "refs/tags/${version}";
hash = "sha256-7719gOM8WQVjODwOSo7HpH3HMFFeCGQQYBKktBAevig=";
hash = "sha256-umNuHyZrdDGyrhQEG9+f08D4Wwrz6bVJ6ysw8pfbHv4=";
};
nativeBuildInputs = [ setuptools ] ++ lib.optionals (!isPyPy) [ cython ];
build-system = [ setuptools ] ++ lib.optionals (!isPyPy) [ cython ];
__darwinAllowLocalNetworking = true;
@@ -90,7 +91,8 @@ buildPythonPackage rec {
];
meta = with lib; {
description = "Unladen web framework for building APIs and app backends";
changelog = "https://falcon.readthedocs.io/en/stable/changes/${version}.html";
description = "Ultra-reliable, fast ASGI+WSGI framework for building data plane APIs at scale";
homepage = "https://falconframework.org/";
license = licenses.asl20;
maintainers = with maintainers; [ desiderius ];