python38.pkgs.python-jsonrpc-server: disable for python38

(cherry picked from commit ee6f5a32bb)
This commit is contained in:
Jörg Thalheim
2020-04-17 11:22:35 +01:00
parent 5fe104de46
commit 9094d35925

View File

@@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
, pytest, mock, pytestcov, coverage
, future, futures
, future, futures, isPy38
}:
buildPythonPackage rec {
@@ -26,6 +26,8 @@ buildPythonPackage rec {
pytest
'';
disabled = isPy38;
propagatedBuildInputs = [ future ]
++ stdenv.lib.optional (pythonOlder "3.2") futures;
@@ -34,6 +36,5 @@ buildPythonPackage rec {
description = "A Python 2 and 3 asynchronous JSON RPC server";
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
broken = true;
};
}