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
`buildDotnetModule`: add support for installing pre-release tools (#374663)
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
sanic-testing
/
tests.nix
blob
977aab15620866c54104a2550f20f01432810eba
1
{
2
buildPythonPackage,
3
pytest-asyncio,
4
pytestCheckHook,
5
sanic-testing,
6
setuptools,
7
}:
8
9
buildPythonPackage {
10
pname = "sanic-testing-tests";
11
inherit (sanic-testing) version;
12
13
src = sanic-testing.testsout;
14
format = "other";
15
16
dontBuild = true;
17
dontInstall = true;
18
19
nativeCheckInputs = [
20
pytest-asyncio
21
pytestCheckHook
22
sanic-testing
23
setuptools
24
];
25
26
pythonImportsCheck = [ "sanic_testing" ];
27
}