summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-socketio
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-06-23 00:14:56 +0200
committerRobert Schütz <dev@schuetz-co.de>2021-06-23 00:14:56 +0200
commitc57fbd38c2a132751546a70fcb37751c97395d0e (patch)
tree5011ce1f499270c3af2f6348d9942eda31c8cd6d /pkgs/development/python-modules/python-socketio
parentb51d8262d556ca3bfdc9ac443e0135133285a99f (diff)
pythonPackages.python-socketio_4: drop
Versioned attributes in python-packages.nix should be avoided.
Diffstat (limited to 'pkgs/development/python-modules/python-socketio')
-rw-r--r--pkgs/development/python-modules/python-socketio/4.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/pkgs/development/python-modules/python-socketio/4.nix b/pkgs/development/python-modules/python-socketio/4.nix
deleted file mode 100644
index 3a6f5d87fdd4..000000000000
--- a/pkgs/development/python-modules/python-socketio/4.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ lib
-, bidict
-, buildPythonPackage
-, fetchFromGitHub
-, mock
-, pytestCheckHook
-, python-engineio_3
-}:
-
-buildPythonPackage rec {
- pname = "python-socketio";
- version = "4.6.1";
-
- src = fetchFromGitHub {
- owner = "miguelgrinberg";
- repo = "python-socketio";
- rev = "v${version}";
- sha256 = "14dijag17v84v0pp9qi89h5awb4h4i9rj0ppkixqv6is9z9lflw5";
- };
-
- propagatedBuildInputs = [
- bidict
- python-engineio_3
- ];
-
- checkInputs = [
- mock
- pytestCheckHook
- ];
-
- pythonImportsCheck = [ "socketio" ];
-
- # pytestCheckHook seems to change the default log level to WARNING, but the
- # tests assert it is ERROR
- disabledTests = [ "test_logger" ];
-
- meta = with lib; {
- description = "Python Socket.IO server and client 4.x";
- 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/";
- license = with licenses; [ mit ];
- maintainers = with maintainers; [ graham33 ];
- };
-}