about summary refs log tree commit diff
path: root/pkgs/development/python-modules/graphene-django/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/graphene-django/default.nix')
-rw-r--r--pkgs/development/python-modules/graphene-django/default.nix61
1 files changed, 32 insertions, 29 deletions
diff --git a/pkgs/development/python-modules/graphene-django/default.nix b/pkgs/development/python-modules/graphene-django/default.nix
index a7248d1b80650..254b2ae16a53f 100644
--- a/pkgs/development/python-modules/graphene-django/default.nix
+++ b/pkgs/development/python-modules/graphene-django/default.nix
@@ -1,27 +1,28 @@
-{ stdenv
-, lib
-, buildPythonPackage
-, pythonOlder
-, fetchFromGitHub
+{
+  stdenv,
+  lib,
+  buildPythonPackage,
+  pythonOlder,
+  fetchFromGitHub,
 
-, graphene
-, graphql-core
-, django
-, djangorestframework
-, promise
-, text-unidecode
+  graphene,
+  graphql-core,
+  django,
+  djangorestframework,
+  promise,
+  text-unidecode,
 
-, django-filter
-, mock
-, py
-, pytest-django
-, pytest-random-order
-, pytest7CheckHook
+  django-filter,
+  mock,
+  py,
+  pytest-django,
+  pytest-random-order,
+  pytest7CheckHook,
 }:
 
 buildPythonPackage rec {
   pname = "graphene-django";
-  version = "3.2.1";
+  version = "3.2.2";
   format = "setuptools";
 
   disabled = pythonOlder "3.6";
@@ -30,7 +31,7 @@ buildPythonPackage rec {
     owner = "graphql-python";
     repo = pname;
     rev = "refs/tags/v${version}";
-    hash = "sha256-wzU9U4mYvBf43qBQi20ewKtmw1eFskQk+nnsdaM7HQM=";
+    hash = "sha256-12ue7Pq7TFMSBAfaj8Si6KrpuKYp5T2EEesJpc8wRho=";
   };
 
   postPatch = ''
@@ -60,16 +61,18 @@ buildPythonPackage rec {
     pytest7CheckHook
   ];
 
-  disabledTests = [
-    # https://github.com/graphql-python/graphene-django/issues/1510
-    "test_should_filepath_convert_string"
-    "test_should_choice_convert_enum"
-    "test_should_multiplechoicefield_convert_to_list_of_enum"
-    "test_perform_mutate_success_with_enum_choice_field"
-  ] ++ lib.optionals stdenv.isDarwin [
-    # this test touches files in the "/" directory and fails in darwin sandbox
-    "test_should_filepath_convert_string"
-  ];
+  disabledTests =
+    [
+      # https://github.com/graphql-python/graphene-django/issues/1510
+      "test_should_filepath_convert_string"
+      "test_should_choice_convert_enum"
+      "test_should_multiplechoicefield_convert_to_list_of_enum"
+      "test_perform_mutate_success_with_enum_choice_field"
+    ]
+    ++ lib.optionals stdenv.isDarwin [
+      # this test touches files in the "/" directory and fails in darwin sandbox
+      "test_should_filepath_convert_string"
+    ];
 
   meta = with lib; {
     description = "Integrate GraphQL into your Django project";