python313Packages.soundcloudpy: init at 0.1.4
Co-authored-by: Emily <git@emilylange.de>
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user