1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 aiohttp,
6}:
7
8buildPythonPackage rec {
9 pname = "sockjs";
10 version = "0.13.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-V+lZoj8gqNVRSdHl2ws7hwcm8rStgWbUG9z0EbNs33Y=";
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}