Unverified Commit ec4fa495 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.python-engineio: 4.12.2 -> 4.12.3 (#448676)

parents 53308503 40891489
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -11,7 +11,6 @@
  mock,
  pytest-asyncio,
  pytestCheckHook,
  pythonOlder,
  requests,
  simple-websocket,
  tornado,
@@ -20,16 +19,14 @@

buildPythonPackage rec {
  pname = "python-engineio";
  version = "4.12.2";
  version = "4.12.3";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "miguelgrinberg";
    repo = "python-engineio";
    tag = "v${version}";
    hash = "sha256-VgdqVzO3UToXpD9pMEDqAH2DfdBwaWUfulALAEG2DNs=";
    hash = "sha256-VcL8Od1EM/cbbeOVyXlsXYt8Bms636XbtunrTblkGDQ=";
  };

  build-system = [ setuptools ];
@@ -80,7 +77,7 @@ buildPythonPackage rec {
    '';
    homepage = "https://github.com/miguelgrinberg/python-engineio/";
    changelog = "https://github.com/miguelgrinberg/python-engineio/blob/${src.tag}/CHANGES.md";
    license = with licenses; [ mit ];
    license = licenses.mit;
    maintainers = with maintainers; [ mic92 ];
  };
}