depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-tornado/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

31 lines
650 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 = "A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications.";
homepage = "https://github.com/eugeniy/pytest-tornado";
license = licenses.asl20;
};
}