2018-01-20 23:45:04 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, pytest
|
|
|
|
, tornado
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-tornado";
|
2020-07-06 22:34:06 +01:00
|
|
|
version = "0.8.1";
|
2018-01-20 23:45:04 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-06 22:34:06 +01:00
|
|
|
sha256 = "1cgisd7lb9q2hf55558cbn5jfhv65vsgk46ykgidzf9kqcq1kymr";
|
2018-01-20 23:45:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# package has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-03-12 22:20:19 +00:00
|
|
|
buildInputs = [ pytest ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ tornado ];
|
2018-01-20 23:45:04 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/eugeniy/pytest-tornado";
|
2018-01-20 23:45:04 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ixxie ];
|
|
|
|
};
|
|
|
|
}
|