nixpkgs/pkgs/development/python-modules/wagtail-factories/tests.nix
2023-03-20 13:12:31 +01:00

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