Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-04-28 06:05:49 +00:00
committed by GitHub
29 changed files with 199 additions and 107 deletions
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "async-upnp-client";
version = "0.16.0";
version = "0.16.2";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
sha256 = "sha256-vgy/zn1Xm7Fm7u/YMe/nJa3tyRNKx/WHz0AHfhFaVKo=";
sha256 = "0raq3jgh2aqllycvvi0x2j5f602vv8ggmyd3879jzqbz2znngsgb";
};
propagatedBuildInputs = [
@@ -15,14 +15,14 @@
buildPythonPackage rec {
pname = "clldutils";
version = "3.7.0";
version = "3.8.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "clld";
repo = pname;
rev = "v${version}";
sha256 = "13shas7krf7j04gqxjn09ipy318hmrp1s3b5d576d5r1xfxakam4";
sha256 = "18sjcqzprf96s7bkn5zm3lh83hxfxj56nycxyldrwz7ndgkgxxx2";
};
patchPhase = ''
@@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "deepmerge";
version = "0.2.1";
version = "0.3.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "082bvlk65pkf9qzkzzl8fq7s6zfz1b2v5pcb0ikwg1nx0xspggaz";
sha256 = "1zfl8rkw98vj7jdpb29ably50x46pq6pazhrkrczndf5jc97zzgn";
};
nativeBuildInputs = [
@@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, colorama
, tqdm
, pytestCheckHook
, ffmpeg
}:
buildPythonPackage rec {
pname = "ffmpeg-progress-yield";
version = "0.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "e944093e2c1b213da8fa4f0c276c1bad44e0b8ba8be7e4fd001f5132d16baef5";
};
propagatedBuildInputs = [ colorama tqdm ];
checkInputs = [ pytestCheckHook ffmpeg ];
pytestFlagsArray = [ "test/test.py" ];
pythonImportsCheck = [ "ffmpeg_progress_yield" ];
meta = with lib; {
description = "Run an ffmpeg command with progress";
homepage = "https://github.com/slhck/ffmpeg-progress-yield";
license = with licenses; [ mit ];
maintainers = with maintainers; [ prusnak ];
};
}
@@ -1,12 +1,14 @@
{ lib
, buildPythonPackage
, fetchPypi
, scikitlearn
, numpy
, matplotlib
, scipy
, deprecated
, hopcroftkarp
, pytest
, joblib
, matplotlib
, numpy
, scikitlearn
, scipy
, pytestCheckHook
}:
buildPythonPackage rec {
@@ -19,26 +21,24 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
scikitlearn
numpy
matplotlib
scipy
deprecated
hopcroftkarp
joblib
matplotlib
numpy
scikitlearn
scipy
];
checkInputs = [
pytest
pytestCheckHook
];
checkPhase = ''
preCheck = ''
# specifically needed for darwin
export HOME=$(mktemp -d)
mkdir -p $HOME/.matplotlib
echo "backend: ps" > $HOME/.matplotlib/matplotlibrc
# ignore tests due to python 2.7 fail
pytest --ignore test/test_plots.py \
--ignore test/test_visuals.py
'';
meta = with lib; {
@@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, nose
, scikitlearn
, scipy
@@ -12,25 +11,13 @@
buildPythonPackage rec {
pname = "pynndescent";
version = "0.5.1";
version = "0.5.2";
src = fetchPypi {
inherit pname version;
sha256 = "74a05a54d13573a38878781d44812ac6df97d8762a56f9bb5dd87a99911820fe";
sha256 = "0w87c2v0li2rdbx6qfc2lb6y6bxpdy3jwfgzfs1kcr4d1chj5zfr";
};
patches = [
# fixes tests, included in 0.5.2
(fetchpatch {
url = "https://github.com/lmcinnes/pynndescent/commit/ef5d8c3c3bfe976063b6621e3e0734c0c22d813b.patch";
sha256 = "sha256-49n3kevs3wpzd4FfZVKmNpF2o1V8pJs4KOx8zCAhR3s=";
})
];
checkInputs = [
nose
];
propagatedBuildInputs = [
scikitlearn
scipy
@@ -39,6 +26,10 @@ buildPythonPackage rec {
joblib
];
checkInputs = [
nose
];
checkPhase = ''
nosetests
'';
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "sacn";
version = "1.6.2";
version = "1.6.4";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "2fea82a1dd83b0a67dc0be68a53b1fef1c44b12f3f018e47ac736bd15b36c068";
sha256 = "1abkalzpy8bj2hpx563bxii5h0gv9v89f0yp9clc1l76amyf6dj2";
};
# no tests
@@ -13,21 +13,15 @@
buildPythonPackage rec {
pname = "umap-learn";
version = "0.5.0";
version = "0.5.1";
src = fetchFromGitHub {
owner = "lmcinnes";
repo = "umap";
rev = version;
sha256 = "sha256-2Z5RDi4bz8hh8zMwkcCQY9NrGaVd1DJEBOmrCl2oSvM=";
sha256 = "0favphngcz5jvyqs06x07hk552lvl9qx3vka8r4x0xmv88gsg349";
};
checkInputs = [
nose
tensorflow
pytestCheckHook
];
propagatedBuildInputs = [
numpy
scikitlearn
@@ -36,6 +30,12 @@ buildPythonPackage rec {
pynndescent
];
checkInputs = [
nose
tensorflow
pytestCheckHook
];
preCheck = ''
export HOME=$TMPDIR
'';