11 buildPythonPackage rec {
12 pname = "sanic-testing";
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "sanic-testing";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-WDiEuve9P9fLHxpK0UjxhbZUmWXtP+DV7e6OT19TASs=";
30 propagatedBuildInputs = [
38 cp -R tests $testsout/tests
41 # Check in passthru.tests.pytest to escape infinite recursion with sanic
44 doInstallCheck = false;
47 pytest = callPackage ./tests.nix { };
51 description = "Core testing clients for the Sanic web framework";
52 homepage = "https://github.com/sanic-org/sanic-testing";
53 changelog = "https://github.com/sanic-org/sanic-testing/releases/tag/v${version}";
54 license = licenses.mit;
55 maintainers = with maintainers; [ AluisioASG ];