repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
wagtail-factories
/
tests.nix
blob
2b4c758440329407d9667c708d952f9b83b80e90
1
{
2
buildPythonPackage,
3
django-pattern-library,
4
pytest-django,
5
pytestCheckHook,
6
wagtail,
7
wagtail-factories,
8
}:
9
10
buildPythonPackage {
11
pname = "wagtail-factories-tests";
12
format = "other";
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
}