streamlink: 5.0.1 -> 5.1.2

- https://github.com/streamlink/streamlink/releases/tag/5.1.0

Upstream added an explicit dependency on urllib3 in order to raise the
minimum required version above what the transitive dependencies would
require. Nixpkgs' urllib3 is already >=1.26.0, and so adding it here is
redundant, but done to avoid future surprises.

- https://github.com/streamlink/streamlink/releases/tag/5.1.1
- https://github.com/streamlink/streamlink/releases/tag/5.1.2
This commit is contained in:
D Anzorge 2022-11-17 15:15:36 +01:00
parent 9959fe259d
commit 9a2a145ff3

View file

@ -6,12 +6,12 @@
python3Packages.buildPythonApplication rec {
pname = "streamlink";
version = "5.0.1";
version = "5.1.2";
format = "pyproject";
src = python3Packages.fetchPypi {
inherit pname version;
hash = "sha256-PKRioPBhTV6i3ckQgcKuhQFmpBvUQE4o3FLej8qx4mM=";
hash = "sha256-UB9gTT2/rQXV1Q7UQywEHlGBCJDMDmXupD8nYII4dno=";
};
checkInputs = with python3Packages; [
@ -19,6 +19,7 @@ python3Packages.buildPythonApplication rec {
mock
requests-mock
freezegun
pytest-asyncio
];
nativeBuildInputs = with python3Packages; [
@ -33,6 +34,7 @@ python3Packages.buildPythonApplication rec {
pysocks
requests
websocket-client
urllib3
]) ++ [
ffmpeg
];