linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / sockjs-tornado / default.nix
blobc7235468370f25864a0c4a5836d7e3376ca9e38b
1 { lib, buildPythonPackage, fetchPypi, tornado }:
3 buildPythonPackage rec {
4   pname = "sockjs-tornado";
5   version = "1.0.7";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "02ff25466b3a46b1a7dbe477340b042770ac078de7ea475a6285a28a75eb1fab";
10   };
12   propagatedBuildInputs = [ tornado ];
14   meta = with lib; {
15     homepage = "https://github.com/mrjoes/sockjs-tornado/";
16     description = "SockJS python server implementation on top of Tornado framework";
17     license = licenses.mit;
18     maintainers = with maintainers; [ abbradar ];
19   };