mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
python38.pkgs.python-jsonrpc-server: disable for python38
This commit is contained in:
parent
42ca7c114e
commit
ee6f5a32bb
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue