nixpkgs/pkgs/development/python-modules/websockets/default.nix
2019-09-16 13:24:14 -07:00

27 lines
512 B
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
, pytest
}:
buildPythonPackage rec {
pname = "websockets";
version = "8.0.2";
src = fetchFromGitHub {
owner = "aaugustin";
repo = pname;
rev = version;
sha256 = "02fgb8gib4z5fqv30brz3mhxmblw9bw0978fhpjdrkj7wvqrz5h8";
};
disabled = pythonOlder "3.3";
meta = with lib; {
description = "WebSocket implementation in Python 3";
homepage = "https://github.com/aaugustin/websockets";
license = licenses.bsd3;
};
}