fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 buildPythonPackage,
3 django-pattern-library,
4 pytest-django,
5 pytestCheckHook,
6 wagtail,
7 wagtail-factories,
8}:
9
10buildPythonPackage {
11 pname = "wagtail-factories-tests";
12 pyproject = false;
13 inherit (wagtail-factories) src version;
14
15 dontBuild = true;
16 dontInstall = true;
17
18 checkInputs = [
19 django-pattern-library
20 pytestCheckHook
21 pytest-django
22 wagtail
23 wagtail-factories
24 ];
25}