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
evcc: 0.131.4 -> 0.131.5
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
pytest-asyncio
/
tests.nix
blob
d5f8ead94cbe5d944f9ec385218215c9bac8c701
1
{
2
buildPythonPackage,
3
flaky,
4
hypothesis,
5
pytest-asyncio,
6
pytest-trio,
7
pytestCheckHook,
8
}:
9
10
buildPythonPackage {
11
pname = "pytest-asyncio-tests";
12
inherit (pytest-asyncio) version;
13
14
format = "other";
15
16
src = pytest-asyncio.testout;
17
18
dontBuild = true;
19
dontInstall = true;
20
21
propagatedBuildInputs = [ pytest-asyncio ];
22
23
nativeCheckInputs = [
24
flaky
25
hypothesis
26
pytest-trio
27
pytestCheckHook
28
];
29
}