anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / wagtail-factories / tests.nix
blob2b4c758440329407d9667c708d952f9b83b80e90
2   buildPythonPackage,
3   django-pattern-library,
4   pytest-django,
5   pytestCheckHook,
6   wagtail,
7   wagtail-factories,
8 }:
10 buildPythonPackage {
11   pname = "wagtail-factories-tests";
12   format = "other";
13   inherit (wagtail-factories) src version;
15   dontBuild = true;
16   dontInstall = true;
18   checkInputs = [
19     django-pattern-library
20     pytestCheckHook
21     pytest-django
22     wagtail
23     wagtail-factories
24   ];