depot/third_party/nixpkgs/pkgs/development/python-modules/sockjs/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

28 lines
546 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
aiohttp,
}:
buildPythonPackage rec {
pname = "sockjs";
version = "0.13.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-V+lZoj8gqNVRSdHl2ws7hwcm8rStgWbUG9z0EbNs33Y=";
};
propagatedBuildInputs = [ aiohttp ];
pythonImportsCheck = [ "sockjs" ];
meta = with lib; {
description = "Sockjs server";
homepage = "https://github.com/aio-libs/sockjs";
license = licenses.asl20;
maintainers = with maintainers; [ freezeboy ];
};
}