bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
31 lines
647 B
Nix
31 lines
647 B
Nix
{
|
|
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 = with lib; {
|
|
description = "Py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications";
|
|
homepage = "https://github.com/eugeniy/pytest-tornado";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|