My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sockjs-tornado/default.nix

20 lines
550 B

{ lib, buildPythonPackage, fetchPypi, tornado }:
buildPythonPackage rec {
pname = "sockjs-tornado";
version = "1.0.7";
src = fetchPypi {
inherit pname version;
sha256 = "02ff25466b3a46b1a7dbe477340b042770ac078de7ea475a6285a28a75eb1fab";
};
propagatedBuildInputs = [ tornado ];
meta = with lib; {
homepage = "https://github.com/mrjoes/sockjs-tornado/";
description = "SockJS python server implementation on top of Tornado framework";
license = licenses.mit;
maintainers = with maintainers; [ abbradar ];
};
}