python310Packages.websockets: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-19 11:26:24 +01:00 committed by Robert Schütz
parent 8d0ca353f8
commit 9198cd9e74

View file

@ -20,9 +20,6 @@ buildPythonPackage rec {
hash = "sha256-ZUn/DvO1Kx7Uxne4DF/am69YL1c48qpgQrGek355Z+4=";
};
# Tests fail on Darwin with `OSError: AF_UNIX path too long`
doCheck = !stdenv.isDarwin;
patchPhase = ''
# Disable all tests that need to terminate within a predetermined amount of
# time. This is nondeterministic.
@ -44,7 +41,12 @@ buildPythonPackage rec {
done
'';
checkInputs = [ unittestCheckHook ];
checkInputs = [
unittestCheckHook
];
# Tests fail on Darwin with `OSError: AF_UNIX path too long`
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [
"websockets"
@ -53,6 +55,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "WebSocket implementation in Python";
homepage = "https://websockets.readthedocs.io/";
changelog = "https://github.com/aaugustin/websockets/blob/${version}/docs/project/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};