Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-01-09 18:41:27 +00:00
committed by GitHub
41 changed files with 316 additions and 148 deletions

View File

@@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, pytestcov
, pytest-asyncio
}:
buildPythonPackage rec {
pname = "aiostream";
version = "0.4.1";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "vxgmichel";
repo = pname;
rev = "v${version}";
sha256 = "1wwnjrzkd61k3arxzk7yhg7cc1099bcwr5kz5n91ai6ma5ln139s";
};
checkInputs = [ pytestCheckHook pytestcov pytest-asyncio ];
meta = with lib; {
description = "Generator-based operators for asynchronous iteration";
homepage = "https://aiostream.readthedocs.io";
license = licenses.gpl3Only;
maintainers = [ maintainers.rmcgibbo ];
};
}

View File

@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "cupy";
version = "8.2.0";
version = "8.3.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "8e4bc8428fb14309d73194e19bc4b47e1d6a330678a200e36d9d4b932f1be2e8";
sha256 = "db699fddfde7806445908cf6454c6f4985e7a9563b40405ddf97845d808c5f12";
};
checkInputs = [

View File

@@ -15,12 +15,12 @@
buildPythonPackage rec {
pname = "eliot";
version = "1.12.0";
version = "1.13.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "0wabv7hk63l12881f4zw02mmj06583qsx2im0yywdjlj8f56vqdn";
sha256 = "5760194b308a7ab35514ae1b942d88e9f2359071556d82580383f09ca586fff7";
};
checkInputs = [

View File

@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "eventlet";
version = "0.29.1";
version = "0.30.0";
src = fetchPypi {
inherit pname version;
sha256 = "9faff63631b01277c463ae91cd4ab3f25a2f0f5abe3219d43a386ef1daa6159a";
sha256 = "19d6f3aa9525221ba60d0ec31b570508021af7ad5497fb77f77501fe9a7c34d3";
};
propagatedBuildInputs = [ dnspython greenlet monotonic six ]

View File

@@ -14,11 +14,11 @@
buildPythonPackage rec {
pname = "folium";
version = "0.11.0";
version = "0.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "540789abc21872469e52c59ac3962c61259a8df557feadd6514eb23eb0a64ca7";
sha256 = "d45ace0a813ae65f202ce0356eb29c40a5e8fde071e4d6b5be0a89587ebaeab2";
};
disabled = pythonOlder "3.5";

View File

@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "itemloaders";
version = "1.0.3";
version = "1.0.4";
disabled = isPy27;
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "scrapy";
repo = pname;
rev = "v${version}";
sha256 = "1s8c2il7jyfixpb7h5zq0lf4s07pqwia4ycpf3slb8whcp0h8bfm";
sha256 = "0j68xgx2z63sc1nc9clw6744036vfbijdsghvjv6pk674d5lgyam";
};
propagatedBuildInputs = [ w3lib parsel jmespath itemadapter ];

View File

@@ -5,22 +5,25 @@
, xmltodict
, pygments
, isPy27
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jc";
version = "1.14.0";
version = "1.14.1";
disabled = isPy27;
src = fetchFromGitHub {
owner = "kellyjonbrazil";
repo = "jc";
rev = "v${version}";
sha256 = "0js3mqp6xxg45qsz8wnyyqf4m0wj1kz67bkmvirhdy7s01zhd5hq";
sha256 = "1vzzz7dlg6apxhcl0qkfdpp2v9d0q6jyafpfmklkcbjs31zvwcsw";
};
propagatedBuildInputs = [ ruamel_yaml xmltodict pygments ];
checkInputs = [ pytestCheckHook ];
meta = with stdenv.lib; {
description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output";
homepage = "https://github.com/kellyjonbrazil/jc";

View File

@@ -2,17 +2,19 @@
buildPythonPackage rec {
pname = "PyChromecast";
version = "7.7.1";
version = "7.7.2";
src = fetchPypi {
inherit pname version;
sha256 = "09mdz1y1bfwkszxsawffwy1mr7lc1j2rma571qkb60sk76107zfn";
sha256 = "1w7jayb0z529bh1ybb16pfm0m08qqi4px1q0qwlvcxlcrd2v3m5a";
};
disabled = !isPy3k;
propagatedBuildInputs = [ requests zeroconf protobuf casttube ];
# no tests available
doCheck = false;
pythonImportsCheck = [ "pychromecast" ];
meta = with lib; {

View File

@@ -4,7 +4,7 @@
buildPythonPackage rec {
pname = "pyosmium";
version = "3.0.1";
version = "3.1.0";
disabled = pythonOlder "3.4" || isPyPy;
@@ -12,7 +12,7 @@ buildPythonPackage rec {
owner = "osmcode";
repo = pname;
rev = "v${version}";
sha256 = "06jngbmmmswhyi5q5bjph6gwss28d2azn5414zf0arik5bcvz128";
sha256 = "0m11hdgiysdhyi5yn6nj8a8ycjzx5hpjy7n1c4j6q5caifj7rf7h";
};
nativeBuildInputs = [ cmake ];