depot/third_party/nixpkgs/pkgs/development/python-modules/sockjs/default.nix
Default email 6ae7ad3cc5 Project import generated by Copybara.
GitOrigin-RevId: a322b32e9d74fb476944ff6cfb55833dc69cfaaa
2020-11-19 01:13:47 +01:00

22 lines
507 B
Nix

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