pynvim: 0.3.2 -> 0.4.0

This commit is contained in:
Doron Behar 2019-11-16 11:25:24 +02:00 committed by Jon
parent ac4b42434a
commit 430b7b24d4

View file

@ -7,22 +7,21 @@
, trollius
, pythonOlder
, isPyPy
, pytestrunner
}:
buildPythonPackage rec {
pname = "pynvim";
version = "0.3.2";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "01dybk4vs452pljn1q3il5z2sd313ki0lgiglc0xmjc6wp290r6g";
sha256 = "1mp9ajsgrb9k2f3s8g7vdflj5mg02ii0d0wk4n6dmvjx52rqpzbi";
};
checkInputs = [ nose ];
checkPhase = ''
nosetests
'';
nativeBuildInputs = [
pytestrunner
];
# Tests require pkgs.neovim,
# which we cannot add because of circular dependency.