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