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