mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-16 04:50:25 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
66 lines
1.3 KiB
Nix
66 lines
1.3 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, bidict
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mock
|
|
, msgpack
|
|
, pytestCheckHook
|
|
, python-engineio
|
|
, pythonOlder
|
|
, requests
|
|
, websocket-client
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-socketio";
|
|
version = "5.7.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miguelgrinberg";
|
|
repo = "python-socketio";
|
|
rev = "v${version}";
|
|
hash = "sha256-mSFs/k+3Lp5w4WdOLKj65kOA5b+Nc1uuksVmeeqV58E=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
bidict
|
|
python-engineio
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
client = [
|
|
requests
|
|
websocket-client
|
|
];
|
|
asyncio_client = [
|
|
aiohttp
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
msgpack
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"socketio"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python Socket.IO server and client";
|
|
longDescription = ''
|
|
Socket.IO is a lightweight transport protocol that enables real-time
|
|
bidirectional event-based communication between clients and a server.
|
|
'';
|
|
homepage = "https://github.com/miguelgrinberg/python-socketio/";
|
|
changelog = "https://github.com/miguelgrinberg/python-socketio/blob/v${version}/CHANGES.md";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ mic92 ];
|
|
};
|
|
}
|