mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
pythonpackages.pynvim: disble for python older 3.4
These python version are all end-of-life and the depndency on trollius can be dropped.
This commit is contained in:
parent
b8de584df4
commit
2a00e53bda
|
@ -4,7 +4,6 @@
|
|||
, nose
|
||||
, msgpack
|
||||
, greenlet
|
||||
, trollius ? null
|
||||
, pythonOlder
|
||||
, isPyPy
|
||||
, pytestrunner
|
||||
|
@ -13,6 +12,7 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "pynvim";
|
||||
version = "0.4.3";
|
||||
disabled = pythonOlder "3.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue