python310Packages.websockets: add changelog to meta
This commit is contained in:
parent
8d0ca353f8
commit
9198cd9e74
1 changed files with 7 additions and 4 deletions
|
@ -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 ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue