Merge pull request #188397 from SuperSandro2000/python-passthru-tests

This commit is contained in:
Martin Weinelt
2022-08-26 16:17:47 +02:00
committed by GitHub
2 changed files with 8 additions and 1 deletions
@@ -10,6 +10,7 @@
, black
, magic-wormhole
, mitmproxy
, typer
}:
buildPythonPackage rec {
@@ -31,7 +32,7 @@ buildPythonPackage rec {
];
passthru.tests = {
inherit black flask magic-wormhole mitmproxy;
inherit black flask magic-wormhole mitmproxy typer;
};
meta = with lib; {
@@ -9,6 +9,8 @@
, pytest-timeout
, pytest-xprocess
, pytestCheckHook
# for passthru.tests
, moto, sentry-sdk
}:
buildPythonPackage rec {
@@ -53,6 +55,10 @@ buildPythonPackage rec {
"-m 'not filterwarnings'"
];
passthru.tests = {
inherit moto sentry-sdk;
};
meta = with lib; {
homepage = "https://palletsprojects.com/p/werkzeug/";
description = "The comprehensive WSGI web application library";