shira: init at 1.7.1-unstable-2025-08-31 (#439052)

This commit is contained in:
Sandro
2025-10-24 21:53:37 +00:00
committed by GitHub
2 changed files with 54 additions and 0 deletions
+5
View File
@@ -25787,6 +25787,11 @@
github = "thefossguy";
githubId = 44400303;
};
thegu5 = {
name = "Gus";
github = "thegu5";
githubId = 58223632;
};
thehans255 = {
name = "Hans Jorgensen";
email = "foss-contact@thehans255.com";
+49
View File
@@ -0,0 +1,49 @@
{
lib,
python3Packages,
fetchFromGitHub,
ffmpeg,
}:
python3Packages.buildPythonApplication {
pname = "shira";
version = "1.7.1-unstable-2025-08-31";
pyproject = true;
src = fetchFromGitHub {
owner = "KraXen72";
repo = "shira";
rev = "a7478efa434597324458441f328c1b2f84c04dbc";
hash = "sha256-k15GaOmS0rlQBQldnLo1SzIyCkNQux6P5b7ZG2BIa90=";
};
build-system = [
python3Packages.flit-core
];
dependencies = with python3Packages; [
click
mediafile
pillow
python-dateutil
requests-cache
yt-dlp
ytmusicapi
];
makeWrapperArgs = [
"--prefix PATH : ${
lib.makeBinPath [
ffmpeg
]
}"
];
meta = {
description = "Download music from YouTube, YouTube Music and Soundcloud";
homepage = "https://github.com/KraXen72/shira/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ thegu5 ];
mainProgram = "shiradl";
};
}