1{ lib 2, buildPythonPackage 3, pythonOlder 4, fetchPypi 5}: 6 7buildPythonPackage rec { 8 pname = "wrapio"; 9 version = "2.0.0"; 10 11 disabled = pythonOlder "3.5"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-CUocIbdZ/tJQCxAHzhFpB267ynlXf8Mu+thcRRc0yeg="; 16 }; 17 18 doCheck = false; 19 pythonImportsCheck = [ "wrapio" ]; 20 21 meta = with lib; { 22 description = "Handling event-based streams"; 23 homepage = "https://github.com/Exahilosys/wrapio"; 24 changelog = "https://github.com/Exahilosys/wrapio/releases/tag/v${version}"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ sfrijters ]; 27 }; 28}