python3Packages.graphene: add missing test dependency

This was previously propagated by graphql-core, thus shadowing the
missing dependency.
This commit is contained in:
Martin Weinelt 2021-02-11 03:56:40 +01:00
parent 4547630562
commit b38f8ae53e
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -5,6 +5,7 @@
, iso8601 , iso8601
, graphql-core , graphql-core
, graphql-relay , graphql-relay
, promise
, pytestCheckHook , pytestCheckHook
, pytest-asyncio , pytest-asyncio
, pytest-benchmark , pytest-benchmark
@ -31,6 +32,7 @@ buildPythonPackage rec {
]; ];
checkInputs = [ checkInputs = [
promise
pytestCheckHook pytestCheckHook
pytest-asyncio pytest-asyncio
pytest-benchmark pytest-benchmark
@ -39,6 +41,8 @@ buildPythonPackage rec {
snapshottest snapshottest
]; ];
pytestFlagsArray = [ "--benchmark-disable" ];
pythonImportsCheck = [ "graphene" ]; pythonImportsCheck = [ "graphene" ];
meta = with lib; { meta = with lib; {