python3Packages.graphene: add missing test dependency
This was previously propagated by graphql-core, thus shadowing the missing dependency.
This commit is contained in:
parent
4547630562
commit
b38f8ae53e
1 changed files with 4 additions and 0 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue