Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-04-07 18:14:53 +00:00
committed by GitHub
14 changed files with 65 additions and 29 deletions

View File

@@ -33,11 +33,11 @@
buildPythonPackage rec {
pname = "bokeh";
version = "2.3.0";
version = "2.2.3"; # update together with panel which is not straightforward
src = fetchPypi {
inherit pname version;
sha256 = "dd417708f90702190222b1068a645acae99e66d4b58d7a336d545aeaa04e9b40";
sha256 = "c4a3f97afe5f525019dd58ee8c4e3d43f53fe1b1ac264ccaae9b02c07b2abc17";
};
patches = [

View File

@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "PyChromecast";
version = "9.1.1";
version = "9.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-q52h0u9CSx/HVfZDb1RaVgVuxt4kB16T82nqyOuCGDc=";
sha256 = "sha256-kHZWzqRtOdDpPsgVl5V470+29lX9i/TojmQh/NeCToU=";
};
disabled = !isPy3k;

View File

@@ -7,15 +7,16 @@
, mock
, graphviz
, pycodestyle
, fontconfig
}:
buildPythonPackage rec {
pname = "transitions";
version = "0.8.7";
version = "0.8.8";
src = fetchPypi {
inherit pname version;
sha256 = "8c60ec0828cd037820726283cad5d4d77a5e31514e058b51250420e9873e9bc7";
sha256 = "sha256-56hrMaFhp2Ez8Ymzrp2tJ1WoDqTB4O7hgFZI0CH7Z30=";
};
propagatedBuildInputs = [
@@ -30,10 +31,9 @@ buildPythonPackage rec {
pycodestyle
];
disabledTests = [
# Fontconfig error: Cannot load default config file
"test_diagram"
];
preCheck = ''
export FONTCONFIG_FILE=${fontconfig.out}/etc/fonts/fonts.conf
'';
meta = with lib; {
homepage = "https://github.com/pytransitions/transitions";