Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wagtail-factories / tests.nix
blobb340705f2e88280569ca91a909d6e45138561e0d
1 { buildPythonPackage
2 , django-pattern-library
3 , pytest-django
4 , pytestCheckHook
5 , wagtail
6 , wagtail-factories
7 }:
9 buildPythonPackage {
10   pname = "wagtail-factories-tests";
11   format = "other";
12   inherit (wagtail-factories) src version;
14   dontBuild = true;
15   dontInstall = true;
17   checkInputs = [
18     django-pattern-library
19     pytestCheckHook
20     pytest-django
21     wagtail
22     wagtail-factories
23   ];