Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2019-07-09 15:46:00 +02:00
102 changed files with 2944 additions and 1758 deletions

View File

@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "altair";
version = "3.0.1";
version = "3.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "63934563a7a7b7186335858206a0b9be6043163b8b54a26cd3b3299a9e5e391f";
sha256 = "1zdznkybw3g8fd280h5j5cnnwcv30610gp8fl8vwqda1w2p6pgvp";
};
postPatch = ''

View File

@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "fido2";
version = "0.5.0";
version = "0.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "1pl8d2pr6jzqj4y9qiaddhjgnl92kikjxy0bgzm2jshkzzic8mp3";
sha256 = "11wdcjymw8y6wxgp29gbhdxff3lpc5yp5fcqnr5vnj88g192ic27";
};
propagatedBuildInputs = [ six cryptography ];

View File

@@ -4,7 +4,7 @@
buildPythonPackage rec {
pname = "marshmallow-sqlalchemy";
version = "0.16.3";
version = "0.17.0";
meta = {
homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
@@ -14,7 +14,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "0qzpl53r58fk328cn41365c6jkliwmj41v16zkyjxb9d4s2mvn14";
sha256 = "17pnbv28n9vy3q66ckxfdbb9k1riy6s8lg63zfm5jsx00f0zqqnn";
};
propagatedBuildInputs = [ marshmallow sqlalchemy ];

View File

@@ -1,19 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytest, setuptools, structlog, pytest-asyncio, pytest_xdist, flaky, tornado, pycurl }:
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytest, setuptools, structlog, pytest-asyncio, flaky, tornado, pycurl }:
buildPythonPackage rec {
pname = "nvchecker";
version = "1.4.3";
version = "1.4.4";
src = fetchPypi {
inherit pname version;
sha256 = "0v340wkq4sn9pvcpjh076l8mcqkn3nrn7if8p6iysk02bjxvknbv";
sha256 = "6276ed2a897a30ccd71bfd7cf9e6b7842f37f3d5a86d7a70fe46f437c62b1875";
};
propagatedBuildInputs = [ setuptools structlog tornado pycurl ];
checkInputs = [ pytest pytest-asyncio pytest_xdist flaky ];
checkInputs = [ pytest pytest-asyncio flaky ];
# Disable tests for now, because our version of pytest seems to be too new
# https://github.com/lilydjwg/nvchecker/commit/42a02efec84824a073601e1c2de30339d251e4c7
# requires network access
doCheck = false;
checkPhase = ''

View File

@@ -5,13 +5,13 @@
buildPythonPackage rec {
pname = "python-jsonrpc-server";
version = "0.1.2";
version = "0.2.0";
src = fetchFromGitHub {
owner = "palantir";
repo = "python-jsonrpc-server";
rev = version;
sha256 = "0k55rpywghapk5db8dgp2jj5v5654q6m571s1gcz1mpn2qxkz69l";
sha256 = "054b0xm5z3f82jwp7zj21pkh7gwj9jd933jhymdx49n1n1iynfn0";
};
postPatch = ''

View File

@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, isPy27
, configparser, futures, future, jedi, pluggy, python-jsonrpc-server
, backports_functools_lru_cache, configparser, futures, future, jedi, pluggy, python-jsonrpc-server
, pytest, mock, pytestcov, coverage
, # Allow building a limited set of providers, e.g. ["pycodestyle"].
providers ? ["*"]
@@ -54,7 +54,7 @@ buildPythonPackage rec {
++ stdenv.lib.optional (withProvider "rope") rope
++ stdenv.lib.optional (withProvider "yapf") yapf
++ stdenv.lib.optional isPy27 configparser
++ stdenv.lib.optional (pythonOlder "3.2") futures;
++ stdenv.lib.optionals (pythonOlder "3.2") [ backports_functools_lru_cache futures ];
meta = with stdenv.lib; {
homepage = https://github.com/palantir/python-language-server;

View File

@@ -1,22 +1,28 @@
{ lib, buildPythonPackage, fetchPypi, xmltodict, requests
# Test dependencies
, pytest_3, pytestcov, coveralls, pylint, flake8, graphviz, mock, sphinx
, pytest, pytestcov, coveralls, pylint, flake8, graphviz, mock, sphinx
, sphinx_rtd_theme
}:
buildPythonPackage rec {
pname = "soco";
version = "0.16";
version = "0.17";
src = fetchPypi {
inherit pname version;
sha256 = "7bed4475e3f134283af1f520a9b2e6ce2a8e69bdc1b58ee68528b3d093972424";
sha256 = "15zw6i5z5p8vsa3lp20rjizhv4lzz935r73im0xm6zsl71bsgvj8";
};
postPatch = ''
# https://github.com/SoCo/SoCo/pull/670
substituteInPlace requirements-dev.txt \
--replace "pytest-cov>=2.4.0,<2.6" "pytest-cov>=2.4.0"
'';
propagatedBuildInputs = [ xmltodict requests ];
checkInputs = [
pytest_3 pytestcov coveralls pylint flake8 graphviz mock sphinx
pytest pytestcov coveralls pylint flake8 graphviz mock sphinx
sphinx_rtd_theme
];