9 buildPythonPackage rec {
10 pname = "sanic-routing";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 repo = "sanic-routing";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-IUubPd6mqtCfY4ruI/8wkFcAcS0xXHWbe9RzDac5kRc=";
28 pythonImportsCheck = [
33 description = "Core routing component for the Sanic web framework";
34 homepage = "https://github.com/sanic-org/sanic-routing";
35 changelog = "https://github.com/sanic-org/sanic-routing/releases/tag/v${version}";
36 license = licenses.mit;
37 maintainers = with maintainers; [ AluisioASG ];