2020-11-19 00:13:47 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, aiohttp }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sockjs";
|
|
|
|
version = "0.11.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-11-19 00:13:47 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "A0fUBO2e8xllBnh+2AGPh+5OLQuupJ1CDN1TqWm+wik=";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ aiohttp ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "sockjs" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Sockjs server";
|
|
|
|
homepage = "https://github.com/aio-libs/sockjs";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
|
|
};
|
|
|
|
}
|