ed0c4a69f0
GitOrigin-RevId: e3652e0735fbec227f342712f180f4f21f0594f2
24 lines
403 B
Nix
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
|
|
];
|
|
}
|