python2Packages.wsproto: freeze at 0.14.1
This commit is contained in:
parent
bacf5619e2
commit
0372567397
25
pkgs/development/python-modules/wsproto/0.14.nix
Normal file
25
pkgs/development/python-modules/wsproto/0.14.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, h11, enum34, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "wsproto";
|
||||||
|
version = "0.14.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "051s127qb5dladxa14n9nqajwq7xki1dz1was5r5v9df5a0jq8pd";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ h11 enum34 ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Pure Python, pure state-machine WebSocket implementation";
|
||||||
|
homepage = https://github.com/python-hyper/wsproto/;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -6073,7 +6073,10 @@ in {
|
|||||||
|
|
||||||
us = callPackage ../development/python-modules/us { };
|
us = callPackage ../development/python-modules/us { };
|
||||||
|
|
||||||
wsproto = callPackage ../development/python-modules/wsproto { };
|
wsproto = if (pythonAtLeast "3.6") then
|
||||||
|
callPackage ../development/python-modules/wsproto { }
|
||||||
|
else
|
||||||
|
callPackage ../development/python-modules/wsproto/0.14.nix { };
|
||||||
|
|
||||||
h11 = callPackage ../development/python-modules/h11 { };
|
h11 = callPackage ../development/python-modules/h11 { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user