pythonPackages.python-socketio_4: drop

Versioned attributes in python-packages.nix should be avoided.
This commit is contained in:
Robert Schütz 2021-06-23 00:14:56 +02:00
parent b51d8262d5
commit c57fbd38c2
2 changed files with 0 additions and 49 deletions

View file

@ -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 ];
};
}

View file

@ -7031,8 +7031,6 @@ in {
python-socketio = callPackage ../development/python-modules/python-socketio { };
python-socketio_4 = callPackage ../development/python-modules/python-socketio/4.nix { };
python-socks = callPackage ../development/python-modules/python-socks { };
python-sql = callPackage ../development/python-modules/python-sql { };