Merge pull request #206825 from fabaff/python-socketio-bump

python310Packages.python-socketio: 5.7.1 -> 5.7.2

Changed files
+26 -13
pkgs
development
python-modules
python-engineio
python-socketio
ripe-atlas-cousteau
+2 -1
pkgs/development/python-modules/python-engineio/default.nix
···
owner = "miguelgrinberg";
repo = "python-engineio";
rev = "v${version}";
-
sha256 = "sha256-fymO9WqkYaRsHKCJHQJpySHqZor2t8BfVrfYUfYoJno=";
};
checkInputs = [
···
bidirectional event-based communication between clients and a server.
'';
homepage = "https://github.com/miguelgrinberg/python-engineio/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ mic92 ];
};
···
owner = "miguelgrinberg";
repo = "python-engineio";
rev = "v${version}";
+
hash = "sha256-fymO9WqkYaRsHKCJHQJpySHqZor2t8BfVrfYUfYoJno=";
};
checkInputs = [
···
bidirectional event-based communication between clients and a server.
'';
homepage = "https://github.com/miguelgrinberg/python-engineio/";
+
changelog = "https://github.com/miguelgrinberg/python-engineio/blob/v${version}/CHANGES.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ mic92 ];
};
+13 -5
pkgs/development/python-modules/python-socketio/default.nix
···
buildPythonPackage rec {
pname = "python-socketio";
-
version = "5.7.1";
format = "setuptools";
disabled = pythonOlder "3.6";
···
owner = "miguelgrinberg";
repo = "python-socketio";
rev = "v${version}";
-
sha256 = "sha256-KVaBSBWLeFJYiNJYTwoExExUmUaeNJ40c/WTgTc2Y/w=";
};
propagatedBuildInputs = [
-
aiohttp
bidict
python-engineio
-
requests
-
websocket-client
];
checkInputs = [
mock
msgpack
···
bidirectional event-based communication between clients and a server.
'';
homepage = "https://github.com/miguelgrinberg/python-socketio/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ mic92 ];
};
···
buildPythonPackage rec {
pname = "python-socketio";
+
version = "5.7.2";
format = "setuptools";
disabled = pythonOlder "3.6";
···
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
+
];
+
};
+
checkInputs = [
mock
msgpack
···
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 ];
};
+11 -7
pkgs/development/python-modules/ripe-atlas-cousteau/default.nix
···
{ lib
, python-dateutil
, python-socketio
-
, requests
-
, jsonschema
, pythonOlder
-
, pytestCheckHook
-
, buildPythonPackage
-
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "ripe-atlas-cousteau";
version = "1.5.1";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "RIPE-NCC";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-EHZt9Po/1wDwDacXUCVGcuVSOwcIkPCT2JCKGchu8G4=";
};
postPatch = ''
···
python-dateutil
requests
python-socketio
-
];
checkInputs = [
pytestCheckHook
···
meta = with lib; {
description = "Python client library for RIPE ATLAS API";
homepage = "https://github.com/RIPE-NCC/ripe-atlas-cousteau";
license = licenses.gpl3Only;
maintainers = with maintainers; [ raitobezarius ];
};
···
{ lib
+
, buildPythonPackage
+
, fetchFromGitHub
+
, jsonschema
+
, pytestCheckHook
, python-dateutil
, python-socketio
, pythonOlder
+
, requests
}:
buildPythonPackage rec {
pname = "ripe-atlas-cousteau";
version = "1.5.1";
+
format = "setuptools";
+
+
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "RIPE-NCC";
repo = pname;
rev = "v${version}";
+
hash = "sha256-EHZt9Po/1wDwDacXUCVGcuVSOwcIkPCT2JCKGchu8G4=";
};
postPatch = ''
···
python-dateutil
requests
python-socketio
+
] ++ python-socketio.optional-dependencies.client;
checkInputs = [
pytestCheckHook
···
meta = with lib; {
description = "Python client library for RIPE ATLAS API";
homepage = "https://github.com/RIPE-NCC/ripe-atlas-cousteau";
+
changelog = "https://github.com/RIPE-NCC/ripe-atlas-cousteau/blob/v${version}/CHANGES.rst";
license = licenses.gpl3Only;
maintainers = with maintainers; [ raitobezarius ];
};