9 buildPythonPackage rec {
10 pname = "pytest-tornado";
12 format = "setuptools";
15 inherit pname version;
16 sha256 = "1cgisd7lb9q2hf55558cbn5jfhv65vsgk46ykgidzf9kqcq1kymr";
19 # package has no tests
22 buildInputs = [ pytest ];
24 propagatedBuildInputs = [ tornado ];
27 description = "Py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications";
28 homepage = "https://github.com/eugeniy/pytest-tornado";
29 license = licenses.asl20;