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