From 07d5aa778e2422ca69f56a483347ae88c3a1118d Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Wed, 3 Sep 2025 16:07:34 +0200 Subject: [PATCH] python3Packages.django-pattern-library: fix build, add missing dependency https://hydra.nixos.org/build/305643323 --- .../python-modules/django-pattern-library/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/django-pattern-library/default.nix b/pkgs/development/python-modules/django-pattern-library/default.nix index da43dd05c8ac..1650bf9723d5 100644 --- a/pkgs/development/python-modules/django-pattern-library/default.nix +++ b/pkgs/development/python-modules/django-pattern-library/default.nix @@ -15,6 +15,7 @@ beautifulsoup4, pytestCheckHook, pytest-django, + mkdocs, }: buildPythonPackage rec { @@ -41,6 +42,7 @@ buildPythonPackage rec { beautifulsoup4 pytestCheckHook pytest-django + mkdocs # only needed for jinja2, we don't build docs ]; env.DJANGO_SETTINGS_MODULE = "tests.settings.dev";