nixpkgs/pkgs/development/python-modules/sockjs-tornado/default.nix

21 lines
548 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, tornado }:
buildPythonPackage rec {
pname = "sockjs-tornado";
2018-11-04 11:35:17 +01:00
version = "1.0.6";
src = fetchPypi {
inherit pname version;
2018-11-04 11:35:17 +01:00
sha256 = "ec12b0c37723b0aac56610fb9b6aa68390720d0c9c2a10461df030c3a1d9af95";
};
propagatedBuildInputs = [ tornado ];
meta = with lib; {
2018-06-27 22:12:57 +02:00
homepage = https://github.com/mrjoes/sockjs-tornado/;
description = "SockJS python server implementation on top of Tornado framework";
license = licenses.mit;
maintainers = with maintainers; [ abbradar ];
};
}