python3Packages.strawberry-django: 0.60.0 -> 0.65.1

https://github.com/strawberry-graphql/strawberry-django/blob/v0.65.1/CHANGELOG.md

This commit was automatically generated using update-python-libraries.

Changed files
+9 -2
pkgs
development
python-modules
strawberry-django
+9 -2
pkgs/development/python-modules/strawberry-django/default.nix
···
factory-boy,
pillow,
psycopg2,
+
pytest-asyncio,
pytest-cov-stub,
pytest-django,
pytest-mock,
···
buildPythonPackage rec {
pname = "strawberry-django";
-
version = "0.60.0";
+
version = "0.65.1";
pyproject = true;
src = fetchFromGitHub {
owner = "strawberry-graphql";
repo = "strawberry-django";
tag = "v${version}";
-
hash = "sha256-mMI/tPdt9XK6Lz7VmI3uDxcCjIuidUeGHjG+6AQLoeQ=";
+
hash = "sha256-cX/eG6qWe/h9U4p1pMhhI+bZ5pLmiwGeYxNthKvdI6o=";
};
+
+
postPatch = ''
+
# django.core.exceptions.ImproperlyConfigured: You're using the staticfiles app without having set the required STATIC_URL setting.
+
echo 'STATIC_URL = "static/"' >> tests/django_settings.py
+
'';
build-system = [
poetry-core
···
factory-boy
pillow
psycopg2
+
pytest-asyncio
pytest-cov-stub
pytest-django
pytest-mock