Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-04-07 00:15:14 +00:00
committed by GitHub
32 changed files with 5206 additions and 3321 deletions

View File

@@ -17,7 +17,7 @@
buildPythonPackage rec {
pname = "HAP-python";
version = "3.4.0";
version = "3.4.1";
disabled = pythonOlder "3.5";
# pypi package does not include tests
@@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "ikalchev";
repo = pname;
rev = "v${version}";
sha256 = "0mkrs3fwiyp4am9fx1dnhd9h7rphfwymr46khw40xavrfb5jmsa7";
sha256 = "sha256-tZ6Zwlx5J62Xqpxxmt8Phdd9ngtKYhP/p3uor1dRfK8=";
};
propagatedBuildInputs = [
@@ -58,6 +58,7 @@ buildPythonPackage rec {
"test_idle_connection_cleanup"
"test_we_can_start_stop"
"test_push_event"
"test_bridge_run_stop"
];
meta = with lib; {

View File

@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "awesomeversion";
version = "21.2.3";
version = "21.4.0";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ludeeus";
repo = pname;
rev = version;
sha256 = "sha256-UQ77ot1JXZZAKD/ijw+FBYJnDLJyD7jLrKANksBIM2Y=";
sha256 = "sha256-ulByke1sKVcDdBhAz/fxdNFJ0PSjYVdnBcO+GYEnZUQ=";
};
postPatch = ''

View File

@@ -0,0 +1,37 @@
{ lib
, async-upnp-client
, buildPythonPackage
, fetchFromGitHub
, lxml
, pythonOlder
}:
buildPythonPackage rec {
pname = "openhomedevice";
version = "1.0.0";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "bazwilliams";
repo = pname;
rev = version;
sha256 = "04qdlyzc8xsk7qxyn9l59pbwnlw49zknw0r5lqwx402va12g4ra0";
};
propagatedBuildInputs = [
async-upnp-client
lxml
];
# Tests are currently outdated
# https://github.com/bazwilliams/openhomedevice/issues/20
doCheck = false;
pythonImportsCheck = [ "openhomedevice" ];
meta = with lib; {
description = "Python module to access Linn Ds and Openhome devices";
homepage = "https://github.com/bazwilliams/openhomedevice";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@@ -1,12 +1,15 @@
{ lib
, aiohttp
, asynctest
, buildPythonPackage
, click
, fetchFromGitHub
, mock
, prompt_toolkit
, pygments
, pyserial
, pyserial-asyncio
, pytestCheckHook
, pythonOlder
, redis
, sqlalchemy
, tornado
@@ -15,17 +18,21 @@
buildPythonPackage rec {
pname = "pymodbus";
version = "2.4.0";
version = "2.5.1";
src = fetchFromGitHub {
owner = "riptideio";
repo = pname;
rev = "v${version}";
sha256 = "0x0dv02shcc2yxxm9kvcbhip111sna74dvcfssxdzzy967vnq76v";
sha256 = "sha256-b85jfBZfMZtqtmID+tGBgOe9o0BbmBH83UV71lYAI5c=";
};
# Twisted asynchronous version is not supported due to a missing dependency
propagatedBuildInputs = [
aiohttp
click
prompt_toolkit
pygments
pyserial
pyserial-asyncio
tornado
@@ -34,11 +41,9 @@ buildPythonPackage rec {
checkInputs = [
asynctest
mock
pyserial-asyncio
pytestCheckHook
redis
sqlalchemy
tornado
twisted
];

View File

@@ -2,13 +2,12 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, typing-extensions
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytube";
version = "10.6.1";
version = "10.7.1";
disabled = pythonOlder "3.6";
@@ -16,7 +15,7 @@ buildPythonPackage rec {
owner = "pytube";
repo = "pytube";
rev = "v${version}";
sha256 = "sha256-b0tN4m3/+K243zQ7L4wW4crk9r69Tj64is6C4I5oFZU=";
sha256 = "sha256-a9MYEQFJXfPXYkWiuZkjt/PGs73Dm5614/Xvv6Nn8RA=";
};
checkInputs = [