10 buildPythonPackage rec {
11 pname = "pytest-tornasync";
12 version = "0.6.0.post2";
13 format = "setuptools";
16 src = fetchFromGitHub {
19 # upstream does not keep git tags in sync with pypy releases
20 # https://github.com/eukaryote/pytest-tornasync/issues/9
21 rev = "c5f013f1f727f1ca1fcf8cc748bba7f4a2d79e56";
22 sha256 = "04cg1cfrr55dbi8nljkpcsc103i5c6p0nr46vjr0bnxgkxx03x36";
25 buildInputs = [ pytest ];
27 propagatedBuildInputs = [ tornado ];
29 __darwinAllowLocalNetworking = true;
41 description = "py.test plugin for testing Python 3.5+ Tornado code";
42 homepage = "https://github.com/eukaryote/pytest-tornasync";
43 license = licenses.mit;