about summary refs log tree commit diff
path: root/pkgs/applications/video/streamlink
diff options
context:
space:
mode:
authorD Anzorge <d.anzorge@gmail.com>2022-05-02 03:03:05 +0200
committerD Anzorge <d.anzorge@gmail.com>2022-10-04 00:27:35 +0200
commit2034a3da5a0107070fc420bcce04c3de39d74892 (patch)
treef5dc237b105c568520c5e3ae5357f80809259ca4 /pkgs/applications/video/streamlink
parent5a65614cbdf083be2f339c645e967869e292ffb1 (diff)
streamlink: 3.2.0 -> 5.0.1
Changelogs:
- https://github.com/streamlink/streamlink/releases/tag/4.0.0
- https://github.com/streamlink/streamlink/releases/tag/4.0.1
- https://github.com/streamlink/streamlink/releases/tag/4.1.0
- https://github.com/streamlink/streamlink/releases/tag/4.2.0
- https://github.com/streamlink/streamlink/releases/tag/4.3.0
- https://github.com/streamlink/streamlink/releases/tag/5.0.0
- https://github.com/streamlink/streamlink/releases/tag/5.0.1

Streamlink switched to the pyproject format in 4.0.0
Diffstat (limited to 'pkgs/applications/video/streamlink')
-rw-r--r--pkgs/applications/video/streamlink/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix
index 415790b4c11cb..9f2487734f024 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -6,11 +6,12 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "streamlink";
-  version = "3.2.0";
+  version = "5.0.1";
+  format = "pyproject";
 
   src = python3Packages.fetchPypi {
     inherit pname version;
-    sha256 = "sha256-l3DS2DhExTeKc+FBMNy3YKvIVlZsqgpB/FuXoN7V2SY=";
+    hash = "sha256-PKRioPBhTV6i3ckQgcKuhQFmpBvUQE4o3FLej8qx4mM=";
   };
 
   checkInputs = with python3Packages; [
@@ -20,6 +21,10 @@ python3Packages.buildPythonApplication rec {
     freezegun
   ];
 
+  nativeBuildInputs = with python3Packages; [
+    versioningit
+  ];
+
   propagatedBuildInputs = (with python3Packages; [
     isodate
     lxml