about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-jsonrpc-server
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-04-17 11:22:35 +0100
committerJörg Thalheim <joerg@thalheim.io>2020-04-17 11:22:35 +0100
commitee6f5a32bb090ddacee9f40056a5598b2f10480a (patch)
tree83b837ba2cdb3281173509f639b2eeccd3711386 /pkgs/development/python-modules/python-jsonrpc-server
parent42ca7c114ebef5cebb181d1f14615b312a80ae3f (diff)
python38.pkgs.python-jsonrpc-server: disable for python38
Diffstat (limited to 'pkgs/development/python-modules/python-jsonrpc-server')
-rw-r--r--pkgs/development/python-modules/python-jsonrpc-server/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python-jsonrpc-server/default.nix b/pkgs/development/python-modules/python-jsonrpc-server/default.nix
index f6e95f409b8ef..16c53cd7caba6 100644
--- a/pkgs/development/python-modules/python-jsonrpc-server/default.nix
+++ b/pkgs/development/python-modules/python-jsonrpc-server/default.nix
@@ -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;