pythonPackages.websockets: init at 3.2

This commit is contained in:
schneefux 2016-12-14 19:10:14 +01:00
parent b217c0a99b
commit 64d0c0ec1e
No known key found for this signature in database
GPG Key ID: 50F2BF336737C2F0
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, fetchurl
, buildPythonPackage
, pythonOlder
}:
let
pname = "websockets";
version = "3.2";
in buildPythonPackage rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
sha256 = "1dah1faywsnrlqyzagb1qc1cxrq9145srkdy118yhy9s8dyq4dmm";
};
disabled = pythonOlder "3.3";
doCheck = false; # protocol tests fail
meta = {
description = "WebSocket implementation in Python 3";
homepage = https://github.com/aaugustin/websockets;
license = lib.licenses.bsd3;
};
}

View File

@ -26208,6 +26208,7 @@ in {
};
};
websockets = callPackage ../development/python-modules/websockets { };
wand = buildPythonPackage rec {
name = "Wand-0.3.5";