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-08-30 16:43:08 +01:00
version = "1.0.5";
src = fetchPypi {
inherit pname version;
2018-08-30 16:43:08 +01:00
sha256 = "4c4bcf33c8a238bbab37d01da769bcf89e74ef6019bfa76ddbcb4d682d47187e";
};
propagatedBuildInputs = [ tornado ];
meta = with lib; {
2018-06-27 21:12:57 +01: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 ];
};
}