simple-websocket-server: Init at 20180414 (#47567)

This commit is contained in:
Roman Volosatovs 2018-10-02 00:40:10 +02:00 committed by xeji
parent 46e284aedd
commit 2ada8f78d0
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "simple-websocket-server";
version = "20180414";
src = fetchFromGitHub {
owner = "dpallot";
repo = "simple-websocket-server";
rev = "34e6def93502943d426fb8bb01c6901341dd4fe6";
sha256 = "19rcpdx4vxg9is1cpyh9m9br5clyzrpb7gyfqsl0g3im04m098n5";
};
doCheck = false; # no tests
meta = with stdenv.lib; {
description = "A python based websocket server that is simple and easy to use";
homepage = https://github.com/dpallot/simple-websocket-server/;
license = licenses.mit;
maintainers = with maintainers; [ rvolosatovs ];
platforms = platforms.all;
};
}

View file

@ -4297,6 +4297,8 @@ in {
schema = callPackage ../development/python-modules/schema {};
simple-websocket-server = callPackage ../development/python-modules/simple-websocket-server {};
stem = callPackage ../development/python-modules/stem { };
svg-path = callPackage ../development/python-modules/svg-path { };