summary refs log tree commit diff
path: root/pkgs/development/python-modules/simple-websocket-server/default.nix
blob: 312f58bf9fa9f74ecec149dbda2489b460ba5b45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchFromGitHub }:

buildPythonPackage {
  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;
  };
}