summary refs log tree commit diff
path: root/pkgs/development/python-modules/graphene
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-02-11 03:56:40 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-02-11 03:56:40 +0100
commitb38f8ae53ed2eeb25a57b29b7f2885f2b03c3ecc (patch)
treef25f986aae303515b4fd27cf05173253cf60decb /pkgs/development/python-modules/graphene
parent45476305629e6a6fa965d550ad0c4a02b0b79297 (diff)
downloadnixpkgs-b38f8ae53ed2eeb25a57b29b7f2885f2b03c3ecc.tar
nixpkgs-b38f8ae53ed2eeb25a57b29b7f2885f2b03c3ecc.tar.gz
nixpkgs-b38f8ae53ed2eeb25a57b29b7f2885f2b03c3ecc.tar.bz2
nixpkgs-b38f8ae53ed2eeb25a57b29b7f2885f2b03c3ecc.tar.lz
nixpkgs-b38f8ae53ed2eeb25a57b29b7f2885f2b03c3ecc.tar.xz
nixpkgs-b38f8ae53ed2eeb25a57b29b7f2885f2b03c3ecc.tar.zst
nixpkgs-b38f8ae53ed2eeb25a57b29b7f2885f2b03c3ecc.zip
python3Packages.graphene: add missing test dependency
This was previously propagated by graphql-core, thus shadowing the
missing dependency.
Diffstat (limited to 'pkgs/development/python-modules/graphene')
-rw-r--r--pkgs/development/python-modules/graphene/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/graphene/default.nix b/pkgs/development/python-modules/graphene/default.nix
index 301ffca0347..bf7d08cdce3 100644
--- a/pkgs/development/python-modules/graphene/default.nix
+++ b/pkgs/development/python-modules/graphene/default.nix
@@ -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; {