python3.pkgs.pyls: 0.2.1 -> 0.3.0

This commit is contained in:
Jörg Thalheim 2018-10-17 00:47:02 +01:00
parent 0c8cdb53f6
commit 76db7492db
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA

View file

@ -4,13 +4,13 @@
buildPythonPackage rec {
pname = "pyls-black";
version = "0.2.1";
version = "0.3.0";
src = fetchFromGitHub {
owner = "rupert";
repo = "pyls-black";
rev = "v${version}";
sha256 = "0xa3iv8nhnj0lw0dh41qb0dqp55sb6rdxalbk60v8jll6qyc0si8";
sha256 = "1pagbafb9r9glzy7nbvrq19msjy4wqahrvmc0wll0a0r4msqpi1d";
};
disabled = !isPy3k;
@ -19,9 +19,6 @@ buildPythonPackage rec {
pytest
'';
# Enable when https://github.com/rupert/pyls-black/pull/6 is merged.
doCheck = false;
checkInputs = [ pytest ];
propagatedBuildInputs = [ black toml python-language-server ];