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