1{ lib
2, buildPythonPackage
3, pytest
4, tornado
5, fetchPypi
6}:
7
8buildPythonPackage rec {
9 pname = "pytest-tornado";
10 version = "0.4.5";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0b1r5im7qmbpmxhfvq13a6rp78sjjrrpysfnjkd9hggavgc75dr8";
15 };
16
17 # package has no tests
18 doCheck = false;
19
20 propagatedBuildInputs = [ pytest tornado ];
21
22 meta = with lib; {
23 description = "A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications.";
24 homepage = https://github.com/eugeniy/pytest-tornado;
25 license = licenses.asl20;
26 maintainers = with maintainers; [ ixxie ];
27 };
28}