depot/third_party/nixpkgs/pkgs/development/python-modules/wagtail-factories/tests.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

25 lines
411 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
];
}