Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / sockjs / default.nix
blobd589179338fd5b462e23bb9c7290cc7ec31f7ca1
1 { lib, buildPythonPackage, fetchPypi, aiohttp }:
3 buildPythonPackage rec {
4   pname = "sockjs";
5   version = "0.11.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "A0fUBO2e8xllBnh+2AGPh+5OLQuupJ1CDN1TqWm+wik=";
10   };
12   propagatedBuildInputs = [ aiohttp ];
14   pythonImportsCheck = [ "sockjs" ];
16   meta = with lib; {
17     description = "Sockjs server";
18     homepage = "https://github.com/aio-libs/sockjs";
19     license = licenses.asl20;
20     maintainers = with maintainers; [ freezeboy ];
21   };