1{ lib, buildPythonPackage, fetchFromGitHub }:
2
3buildPythonPackage {
4 pname = "simple-websocket-server";
5 version = "20180414";
6 src = fetchFromGitHub {
7 owner = "dpallot";
8 repo = "simple-websocket-server";
9 rev = "34e6def93502943d426fb8bb01c6901341dd4fe6";
10 sha256 = "19rcpdx4vxg9is1cpyh9m9br5clyzrpb7gyfqsl0g3im04m098n5";
11 };
12
13 doCheck = false; # no tests
14
15 meta = with lib; {
16 description = "A python based websocket server that is simple and easy to use";
17 homepage = "https://github.com/dpallot/simple-websocket-server/";
18 license = licenses.mit;
19 maintainers = with maintainers; [ rvolosatovs ];
20 platforms = platforms.all;
21 };
22}