Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions pkgs/development/python-modules/chat-downloader/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
isodate,
docstring-parser,
Expand All @@ -10,17 +11,21 @@
pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "chat-downloader";
version = "0.2.8";
format = "setuptools";
pyproject = true;

__structuredAttrs = true;

src = fetchPypi {
inherit version pname;
inherit (finalAttrs) version pname;
hash = "sha256-WBasBhefgRkOdMdz2K/agvS+cY6m3/33wiu+Jl4d1Cg=";
};

propagatedBuildInputs = [
build-system = [ setuptools ];

dependencies = [
requests
isodate
docstring-parser
Expand All @@ -39,8 +44,8 @@ buildPythonPackage rec {
description = "Simple tool used to retrieve chat messages from livestreams, videos, clips and past broadcasts";
mainProgram = "chat_downloader";
homepage = "https://github.com/xenova/chat-downloader";
changelog = "https://github.com/xenova/chat-downloader/releases/tag/v${version}";
changelog = "https://github.com/xenova/chat-downloader/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
})
Loading