-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python311Packages.radios: 0.3.0 -> 0.3.1 #295505
Changes from all commits
0be5247
253e46d
602141b
d34b873
afea7eb
01eb611
57b8402
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/src/streamlink/stream/ffmpegmux.py b/src/streamlink/stream/ffmpegmux.py | ||
index 258b314a..c493e010 100644 | ||
--- a/src/streamlink/stream/ffmpegmux.py | ||
+++ b/src/streamlink/stream/ffmpegmux.py | ||
@@ -80,7 +80,7 @@ class MuxedStream(Stream, Generic[TSubstreams]): | ||
|
||
|
||
class FFMPEGMuxer(StreamIO): | ||
- __commands__: ClassVar[List[str]] = ["ffmpeg"] | ||
+ __commands__: ClassVar[List[str]] = ["@ffmpeg@"] | ||
|
||
DEFAULT_OUTPUT_FORMAT = "matroska" | ||
DEFAULT_VIDEO_CODEC = "copy" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,21 +3,19 @@ | |
, buildPythonPackage | ||
, fetchFromGitLab | ||
, fetchpatch | ||
, gnupg | ||
, html2text | ||
, libyaml | ||
, lxml | ||
, nose | ||
, packaging | ||
, pillow | ||
, prettytable | ||
, pycountry | ||
, pytestCheckHook | ||
, python-dateutil | ||
, pythonOlder | ||
, pyyaml | ||
, requests | ||
, rich | ||
, termcolor | ||
, setuptools | ||
, testers | ||
, unidecode | ||
, woob | ||
|
@@ -26,27 +24,25 @@ | |
buildPythonPackage rec { | ||
pname = "woob"; | ||
version = "3.6"; | ||
format = "pyproject"; | ||
pyproject = true; | ||
|
||
disabled = pythonOlder "3.7"; | ||
|
||
src = fetchFromGitLab { | ||
owner = "woob"; | ||
repo = pname; | ||
repo = "woob"; | ||
rev = version; | ||
hash = "sha256-M9AjV954H1w64YGCVxDEGGSnoEbmocG3zwltob6IW04="; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
packaging | ||
setuptools | ||
]; | ||
|
||
propagatedBuildInputs = [ | ||
babel | ||
python-dateutil | ||
gnupg | ||
html2text | ||
libyaml | ||
lxml | ||
packaging | ||
pillow | ||
|
@@ -55,17 +51,18 @@ buildPythonPackage rec { | |
pyyaml | ||
requests | ||
rich | ||
termcolor | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why removing these dependencies? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because we always miss things in the python-updates bulk update. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I searched the upstream code for the dependency and couldn't find it. |
||
unidecode | ||
]; | ||
|
||
nativeCheckInputs = [ | ||
nose | ||
pytestCheckHook | ||
]; | ||
|
||
checkPhase = '' | ||
nosetests | ||
''; | ||
disabledTests = [ | ||
# require networking | ||
"test_ciphers" | ||
"test_verify" | ||
]; | ||
|
||
pythonImportsCheck = [ | ||
"woob" | ||
|
@@ -77,6 +74,7 @@ buildPythonPackage rec { | |
}; | ||
|
||
meta = with lib; { | ||
changelog = "https://gitlab.com/woob/woob/-/blob/${src.rev}/ChangeLog"; | ||
description = "Collection of applications and APIs to interact with websites"; | ||
homepage = "https://woob.tech"; | ||
license = licenses.lgpl3Plus; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,36 +2,59 @@ | |
, arabic-reshaper | ||
, buildPythonPackage | ||
, fetchFromGitHub | ||
, fetchpatch2 | ||
, html5lib | ||
, pillow | ||
, pyhanko | ||
, pyhanko-certvalidator | ||
, pypdf | ||
, pytestCheckHook | ||
, python-bidi | ||
, pythonOlder | ||
, pythonRelaxDepsHook | ||
, reportlab | ||
, setuptools | ||
, svglib | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "xhtml2pdf"; | ||
version = "0.2.13"; | ||
version = "0.2.15"; | ||
pyproject = true; | ||
|
||
disabled = pythonOlder "3.8"; | ||
|
||
src = fetchFromGitHub { | ||
owner = pname; | ||
repo = pname; | ||
owner = "xhtml2pdf"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why changing that? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because semantically they're not the same thing. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
repo = "xhtml2pdf"; | ||
rev = "refs/tags/v${version}"; | ||
hash = "sha256-K7gsTLYcXmKmEQzOXrJ2kvvLzKaDkZ/NRLRc0USii5M="; | ||
hash = "sha256-JXxh/n1kUsy3O4P/6WTfa5p+mYy/t4ZBUhlHp+ypoQc="; | ||
}; | ||
|
||
patches = [ | ||
# https://github.com/xhtml2pdf/xhtml2pdf/pull/754 | ||
(fetchpatch2 { | ||
name = "reportlab-compat.patch"; | ||
url = "https://github.com/xhtml2pdf/xhtml2pdf/commit/1252510bd23b833b45b4d252aeac62c1eb51eeef.patch"; | ||
hash = "sha256-9Fkn086uh2biabmiChbBna8Q4lJV/604yX1ng9j5TGs="; | ||
}) | ||
]; | ||
|
||
nativeBuildInputs = [ | ||
pythonRelaxDepsHook | ||
setuptools | ||
]; | ||
|
||
pythonRelaxDeps = [ | ||
"reportlab" | ||
]; | ||
|
||
propagatedBuildInputs = [ | ||
arabic-reshaper | ||
html5lib | ||
pillow | ||
pyhanko | ||
pyhanko-certvalidator | ||
pypdf | ||
python-bidi | ||
reportlab | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why changing that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#277994