1{ lib, buildPythonPackage, fetchPypi, aiohttp }: 2 3buildPythonPackage rec { 4 pname = "sockjs"; 5 version = "0.11.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "A0fUBO2e8xllBnh+2AGPh+5OLQuupJ1CDN1TqWm+wik="; 10 }; 11 12 propagatedBuildInputs = [ aiohttp ]; 13 14 pythonImportsCheck = [ "sockjs" ]; 15 16 meta = with lib; { 17 description = "Sockjs server"; 18 homepage = "https://github.com/aio-libs/sockjs"; 19 license = licenses.asl20; 20 maintainers = with maintainers; [ freezeboy ]; 21 }; 22}