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
Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
wagtail-factories
/
tests.nix
blob
b340705f2e88280569ca91a909d6e45138561e0d
1
{ buildPythonPackage
2
, django-pattern-library
3
, pytest-django
4
, pytestCheckHook
5
, wagtail
6
, wagtail-factories
7
}:
8
9
buildPythonPackage {
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
}