depot/third_party/nixpkgs/pkgs/development/python-modules/wagtail-factories/tests.nix
Default email ed0c4a69f0 Project import generated by Copybara.
GitOrigin-RevId: e3652e0735fbec227f342712f180f4f21f0594f2
2023-03-31 00:05:00 +02:00

24 lines
403 B
Nix

{ buildPythonPackage
, django-pattern-library
, pytest-django
, pytestCheckHook
, wagtail
, wagtail-factories
}:
buildPythonPackage {
pname = "wagtail-factories-tests";
format = "other";
inherit (wagtail-factories) src version;
dontBuild = true;
dontInstall = true;
checkInputs = [
django-pattern-library
pytestCheckHook
pytest-django
wagtail
wagtail-factories
];
}