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

This commit is contained in:
Jörg Thalheim 2020-04-17 11:22:35 +01:00
parent 42ca7c114e
commit ee6f5a32bb
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92

View File

@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
, pytest, mock, pytestcov, coverage
, future, futures, ujson
, future, futures, ujson, isPy38
}:
buildPythonPackage rec {
@ -26,6 +26,8 @@ buildPythonPackage rec {
pytest
'';
disabled = isPy38;
propagatedBuildInputs = [ future ujson ]
++ stdenv.lib.optional (pythonOlder "3.2") futures;