10 buildPythonPackage rec {
11 pname = "sanic-routing";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
19 repo = "sanic-routing";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-IUubPd6mqtCfY4ruI/8wkFcAcS0xXHWbe9RzDac5kRc=";
29 pythonImportsCheck = [ "sanic_routing" ];
32 description = "Core routing component for the Sanic web framework";
33 homepage = "https://github.com/sanic-org/sanic-routing";
34 changelog = "https://github.com/sanic-org/sanic-routing/releases/tag/v${version}";
35 license = licenses.mit;