Skip to content

Commit

Permalink
pythonpackages.pynvim: disble for python older 3.4
Browse files Browse the repository at this point in the history
These python version are all end-of-life and the depndency on trollius
can be dropped.
  • Loading branch information
wamserma committed Apr 30, 2021
1 parent b8de584 commit 2a00e53
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pkgs/development/python-modules/pynvim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
, nose
, msgpack
, greenlet
, trollius ? null
, pythonOlder
, isPyPy
, pytestrunner
Expand All @@ -13,6 +12,7 @@
buildPythonPackage rec {
pname = "pynvim";
version = "0.4.3";
disabled = pythonOlder "3.4";

src = fetchPypi {
inherit pname version;
Expand All @@ -28,8 +28,7 @@ buildPythonPackage rec {
doCheck = false;

propagatedBuildInputs = [ msgpack ]
++ lib.optional (!isPyPy) greenlet
++ lib.optional (pythonOlder "3.4") trollius;
++ lib.optional (!isPyPy) greenlet;

meta = {
description = "Python client for Neovim";
Expand Down

0 comments on commit 2a00e53

Please sign in to comment.