Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 35 lines 707 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4, pythonOlder 5 6# Python dependencies 7, uvloop 8, pytest 9}: 10 11buildPythonPackage rec { 12 pname = "aioextensions"; 13 version = "20.11.1621472"; 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "abfb2a27590f20b04808192e6c9c5f93298656c013546850c4505b5070a8cc82"; 19 }; 20 21 propagatedBuildInputs = [ uvloop ]; 22 23 checkInputs = [ pytest ]; 24 checkPhase = '' 25 cd test/ 26 pytest 27 ''; 28 29 meta = with lib; { 30 description = "High performance functions to work with the async IO"; 31 homepage = "https://kamadorueda.github.io/aioextensions"; 32 license = licenses.mit; 33 maintainers = with maintainers; [ kamadorueda ]; 34 }; 35}