python3Packages.python-engineio: 4.6.1 -> 4.7.1
This commit is contained in:
parent
9a30d9d644
commit
5a655c1ca1
1 changed files with 17 additions and 2 deletions
|
@ -10,13 +10,14 @@
|
|||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, requests
|
||||
, simple-websocket
|
||||
, tornado
|
||||
, websocket-client
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-engineio";
|
||||
version = "4.6.1";
|
||||
version = "4.7.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
@ -25,7 +26,21 @@ buildPythonPackage rec {
|
|||
owner = "miguelgrinberg";
|
||||
repo = "python-engineio";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-za2JY5Gu9MEqi3W1zxcuwYiJ5XLc43ig6Hdx/4JwDbY=";
|
||||
hash = "sha256-jHXpPnrQlIpmQ2sY4y6AUx/6W8Pf+683s4NmmlwZO58=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
simple-websocket
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
client = [
|
||||
requests
|
||||
websocket-client
|
||||
];
|
||||
asyncio_client = [
|
||||
aiohttp
|
||||
];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
|
|
Loading…
Reference in a new issue