python39Packages.wsproto: switch to pytestCheckHook, remove python 3.6 support, add SuperSandro2000 as maintainer

This commit is contained in:
Sandro Jäckel 2022-03-23 08:19:25 +01:00
parent cd64f8e8b3
commit ff53fd63f8
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,30 +1,31 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy36
, dataclasses
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, h11
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "wsproto";
version = "1.1.0";
disabled = pythonOlder "3.6"; # python versions <3.6
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ouVr/Vx82DwTadg7X+zNbTd5i3SHKGbmJhbg7PERvag=";
};
propagatedBuildInputs = [ h11 ] ++ lib.optional isPy36 dataclasses;
propagatedBuildInputs = [ h11 ];
checkInputs = [ pytest ];
checkInputs = [ pytestCheckHook ];
checkPhase = ''
py.test
'';
pythonImportsCheck = [ "wsproto" ];
meta = with lib; {
description = "Pure Python, pure state-machine WebSocket implementation";
homepage = "https://github.com/python-hyper/wsproto/";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}