python312Packages.strawberry-django: 0.55.0 -> 0.56.0 (#382312)

authored by Weijia Wang and committed by GitHub a7281e4a 247dc49a

+21 -19
+21 -19
pkgs/development/python-modules/strawberry-django/default.nix
··· 10 # dependencies 11 asgiref, 12 django, 13 - django-tree-queries, 14 strawberry-graphql, 15 16 # optional-dependencies ··· 22 django-guardian, 23 django-mptt, 24 django-polymorphic, 25 factory-boy, 26 pillow, 27 psycopg2, ··· 33 34 buildPythonPackage rec { 35 pname = "strawberry-django"; 36 - version = "0.55.0"; 37 pyproject = true; 38 39 src = fetchFromGitHub { 40 owner = "strawberry-graphql"; 41 repo = "strawberry-django"; 42 tag = "v${version}"; 43 - hash = "sha256-Em6GEYSdVEFkoVa+qI+xN369FOLH9hpEXeMKn9xUCac="; 44 }; 45 46 build-system = [ ··· 49 ]; 50 51 dependencies = [ 52 - asgiref 53 django 54 - django-tree-queries 55 strawberry-graphql 56 ]; 57 ··· 60 enum = [ django-choices-field ]; 61 }; 62 63 - 64 - nativeCheckInputs = [ 65 - pytestCheckHook 66 67 - django-guardian 68 - django-mptt 69 - django-polymorphic 70 - factory-boy 71 - pillow 72 - psycopg2 73 - pytest-cov-stub 74 - pytest-django 75 - pytest-mock 76 - pytest-snapshot 77 - ] ++ optional-dependencies.debug-toolbar ++ optional-dependencies.enum; 78 79 pythonImportsCheck = [ "strawberry_django" ]; 80
··· 10 # dependencies 11 asgiref, 12 django, 13 strawberry-graphql, 14 15 # optional-dependencies ··· 21 django-guardian, 22 django-mptt, 23 django-polymorphic, 24 + django-tree-queries, 25 factory-boy, 26 pillow, 27 psycopg2, ··· 33 34 buildPythonPackage rec { 35 pname = "strawberry-django"; 36 + version = "0.56.0"; 37 pyproject = true; 38 39 src = fetchFromGitHub { 40 owner = "strawberry-graphql"; 41 repo = "strawberry-django"; 42 tag = "v${version}"; 43 + hash = "sha256-X0pbvC0+RCc2HLt/StN6AE7+kEv/9bywvLzuL3FKOhU="; 44 }; 45 46 build-system = [ ··· 49 ]; 50 51 dependencies = [ 52 django 53 + asgiref 54 strawberry-graphql 55 ]; 56 ··· 59 enum = [ django-choices-field ]; 60 }; 61 62 + nativeCheckInputs = 63 + [ 64 + pytestCheckHook 65 66 + django-guardian 67 + django-mptt 68 + django-polymorphic 69 + django-tree-queries 70 + factory-boy 71 + pillow 72 + psycopg2 73 + pytest-cov-stub 74 + pytest-django 75 + pytest-mock 76 + pytest-snapshot 77 + ] 78 + ++ optional-dependencies.debug-toolbar 79 + ++ optional-dependencies.enum; 80 81 pythonImportsCheck = [ "strawberry_django" ]; 82