ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pytest-tornado / default.nix
blobbd1ce2a597b172885777e257b8e07806b1220c17
1 { lib
2 , buildPythonPackage
3 , pytest
4 , tornado
5 , fetchPypi
6 }:
8 buildPythonPackage rec {
9   pname = "pytest-tornado";
10   version = "0.8.1";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1cgisd7lb9q2hf55558cbn5jfhv65vsgk46ykgidzf9kqcq1kymr";
15   };
17   # package has no tests
18   doCheck = false;
20   buildInputs = [ pytest ];
22   propagatedBuildInputs = [ tornado ];
24   meta = with lib; {
25     description = "A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications.";
26     homepage =  "https://github.com/eugeniy/pytest-tornado";
27     license = licenses.asl20;
28     maintainers = with maintainers; [ ixxie ];
29   };