mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
25 lines
403 B
Nix
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
|
|
];
|
|
}
|