depot/third_party/nixpkgs/pkgs/development/python-modules/sockjs/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

23 lines
532 B
Nix

{ lib, buildPythonPackage, fetchPypi, aiohttp }:
buildPythonPackage rec {
pname = "sockjs";
version = "0.11.0";
format = "setuptools";
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 ];
};
}