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
ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
sanic-testing
/
tests.nix
blob
6a228a9823102888665c0ed4f8e309e204ea1af7
1
{ buildPythonPackage
2
, sanic
3
, sanic-testing
4
, pytest-asyncio
5
, pytestCheckHook
6
}:
7
8
buildPythonPackage {
9
pname = "sanic-testing-tests";
10
inherit (sanic-testing) version;
11
12
src = sanic-testing.testsout;
13
14
dontBuild = true;
15
dontInstall = true;
16
17
checkInputs = [
18
pytest-asyncio
19
pytestCheckHook
20
sanic
21
];
22
23
pythonImportsCheck = [
24
"sanic_testing"
25
];
26
}