sesh: 2.7.0 -> 2.8.0 (#371799)
[NixPkgs.git] / pkgs / development / python-modules / sockjs / default.nix
blobc41bef8e1c7fc35b1befa842d788a7166725aae2
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   aiohttp,
6 }:
8 buildPythonPackage rec {
9   pname = "sockjs";
10   version = "0.13.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-V+lZoj8gqNVRSdHl2ws7hwcm8rStgWbUG9z0EbNs33Y=";
16   };
18   propagatedBuildInputs = [ aiohttp ];
20   pythonImportsCheck = [ "sockjs" ];
22   meta = with lib; {
23     description = "Sockjs server";
24     homepage = "https://github.com/aio-libs/sockjs";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ freezeboy ];
27   };