nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at litex 24 lines 403 B view raw
1{ buildPythonPackage 2, django-pattern-library 3, pytest-django 4, pytestCheckHook 5, wagtail 6, wagtail-factories 7}: 8 9buildPythonPackage { 10 pname = "wagtail-factories-tests"; 11 format = "other"; 12 inherit (wagtail-factories) src version; 13 14 dontBuild = true; 15 dontInstall = true; 16 17 checkInputs = [ 18 django-pattern-library 19 pytestCheckHook 20 pytest-django 21 wagtail 22 wagtail-factories 23 ]; 24}