Skip to content

Commit

Permalink
python38.pkgs.python-jsonrpc-server: disable for python38
Browse files Browse the repository at this point in the history
(cherry picked from commit ee6f5a3)
  • Loading branch information
Mic92 committed Apr 17, 2020
1 parent 5fe104d commit 9094d35
Showing 1 changed file with 3 additions and 2 deletions.
@@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
, pytest, mock, pytestcov, coverage
, future, futures
, future, futures, isPy38
}:

buildPythonPackage rec {
Expand All @@ -26,6 +26,8 @@ buildPythonPackage rec {
pytest
'';

disabled = isPy38;

propagatedBuildInputs = [ future ]
++ stdenv.lib.optional (pythonOlder "3.2") futures;

Expand All @@ -34,6 +36,5 @@ buildPythonPackage rec {
description = "A Python 2 and 3 asynchronous JSON RPC server";
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
broken = true;
};
}

0 comments on commit 9094d35

Please sign in to comment.