Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 36 lines 921 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, pytest 6, sphinx 7}: 8 9buildPythonPackage rec { 10 pname = "curio"; 11 version = "0.9"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "51d1a7b49b4f8dd1486ac785c72d522962e93ccfdcfc1f818f5c7553a307b5ef"; 16 }; 17 18 disabled = !isPy3k; 19 20 checkInputs = [ pytest sphinx ]; 21 22 # test_aside_basic times out, 23 # test_aside_cancel fails because modifies PYTHONPATH and cant find pytest 24 checkPhase = '' 25 # __pycache__ was packaged accidentally, https://github.com/dabeaz/curio/issues/301 26 rm -r tests/__pycache__ 27 pytest --deselect tests/test_task.py::test_aside_basic --deselect tests/test_task.py::test_aside_cancel 28 ''; 29 30 meta = with lib; { 31 homepage = "https://github.com/dabeaz/curio"; 32 description = "Library for performing concurrent I/O with coroutines in Python 3"; 33 license = licenses.bsd3; 34 maintainers = [ maintainers.marsam ]; 35 }; 36}