Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-05-02 00:58:46 +00:00
committed by GitHub
28 changed files with 254 additions and 115 deletions
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "grpcio-tools";
version = "1.37.0";
version = "1.37.1";
src = fetchPypi {
inherit pname version;
sha256 = "3ec510c1b6bfc32effc639acf9a055e72dab7a7b6757bf72f2132790d6a7cf1c";
sha256 = "d775fb07cc6561174d6c86d11727a156c4ade969f7bf5edf623ffe2a428bee4e";
};
outputs = [ "out" "dev" ];
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, isPy27
{ lib, buildPythonPackage, fetchFromGitHub, pythonAtLeast, pythonOlder, isPy27
, backports_functools_lru_cache ? null, configparser ? null, futures ? null, future, jedi, pluggy, python-jsonrpc-server, flake8
, pytestCheckHook, mock, pytestcov, coverage, setuptools, ujson, flaky
, # Allow building a limited set of providers, e.g. ["pycodestyle"].
@@ -22,6 +22,8 @@ in
buildPythonPackage rec {
pname = "python-language-server";
version = "0.36.2";
# https://github.com/palantir/python-language-server/issues/896#issuecomment-752790868
disabled = pythonAtLeast "3.9";
src = fetchFromGitHub {
owner = "palantir";