blob: 8ca97fdad6138fbd0f2dac91013dd6e64d283639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
pytest,
tornado,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pytest-tornado";
version = "0.8.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1cgisd7lb9q2hf55558cbn5jfhv65vsgk46ykgidzf9kqcq1kymr";
};
# package has no tests
doCheck = false;
buildInputs = [ pytest ];
propagatedBuildInputs = [ tornado ];
meta = {
description = "Py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications";
homepage = "https://github.com/eugeniy/pytest-tornado";
license = lib.licenses.asl20;
};
}
|