1{ 2 lib, 3 buildPythonPackage, 4 pytest, 5 tornado, 6 fetchPypi, 7}: 8 9buildPythonPackage rec { 10 pname = "pytest-tornado"; 11 version = "0.8.1"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "1cgisd7lb9q2hf55558cbn5jfhv65vsgk46ykgidzf9kqcq1kymr"; 17 }; 18 19 # package has no tests 20 doCheck = false; 21 22 buildInputs = [ pytest ]; 23 24 propagatedBuildInputs = [ tornado ]; 25 26 meta = with lib; { 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; 30 }; 31}