Merge pull request #90033 from misuzu/python-engineio-macos

This commit is contained in:
Jörg Thalheim 2020-06-15 20:36:54 +01:00 committed by GitHub
commit bec05ceb5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,5 @@
{ lib { stdenv
, lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, gdb , gdb
@ -19,6 +20,9 @@ buildPythonPackage rec {
checkInputs = [ gdb ]; checkInputs = [ gdb ];
# tests require gcc for some reason
doCheck = !stdenv.hostPlatform.isDarwin;
postPatch = '' postPatch = ''
# tries to execute flake8, # tries to execute flake8,
# which is likely to break on flake8 updates # which is likely to break on flake8 updates

View File

@ -47,7 +47,6 @@ buildPythonPackage rec {
description = "Engine.IO server"; description = "Engine.IO server";
homepage = "https://github.com/miguelgrinberg/python-engineio/"; homepage = "https://github.com/miguelgrinberg/python-engineio/";
license = licenses.mit; license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.mic92 ]; maintainers = [ maintainers.mic92 ];
}; };
} }