python313Packages.soundcloudpy: init at 0.1.4

Co-authored-by: Emily <git@emilylange.de>
This commit is contained in:
Sandro Jäckel
2026-03-03 15:21:11 +01:00
co-authored by Emily
parent 184f35f212
commit 8bdf36992c
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
aiohttp,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "soundcloudpy";
version = "0.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "music-assistant";
repo = "soundcloudpy";
tag = finalAttrs.version;
hash = "sha256-NuL6VIAssvYiGWqioMtf3Brw/G8Vt2P4/57l3k3db9g=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
];
# has no tests
doCheck = false;
pythonImportsCheck = [ "soundcloudpy" ];
meta = {
description = "Client for async connection to the Soundcloud api";
homepage = "https://github.com/music-assistant/SoundcloudPy";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
})
+2
View File
@@ -17844,6 +17844,8 @@ self: super: with self; {
soundcloud-v2 = callPackage ../development/python-modules/soundcloud-v2 { };
soundcloudpy = callPackage ../development/python-modules/soundcloudpy { };
sounddevice = callPackage ../development/python-modules/sounddevice { };
soundfile = callPackage ../development/python-modules/soundfile { };