python312Packages.osmnx: 1.9.3 → 2.0.0 (#360529)
[NixPkgs.git] / pkgs / development / python-modules / pytest-tornado / default.nix
blobb4851ea3a50a1384eac0bd7a1cfd946c792e7d85
2   lib,
3   buildPythonPackage,
4   pytest,
5   tornado,
6   fetchPypi,
7 }:
9 buildPythonPackage rec {
10   pname = "pytest-tornado";
11   version = "0.8.1";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "1cgisd7lb9q2hf55558cbn5jfhv65vsgk46ykgidzf9kqcq1kymr";
17   };
19   # package has no tests
20   doCheck = false;
22   buildInputs = [ pytest ];
24   propagatedBuildInputs = [ tornado ];
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   };