python3Packages.tidalapi: 0.8.3 -> 0.8.4 (#424524)

This commit is contained in:
Aleksana 2025-07-15 22:33:17 +08:00 committed by GitHub
commit 7a2509e727
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
{ {
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchPypi, fetchFromGitHub,
python-dateutil, python-dateutil,
poetry-core, poetry-core,
requests, requests,
@ -12,15 +12,19 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "tidalapi"; pname = "tidalapi";
version = "0.8.3"; version = "0.8.4";
pyproject = true; pyproject = true;
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "EbbLabs";
hash = "sha256-3I5Xi9vmyAlUNKBmmTuGnetaiiVzL3sEEy31npRZlFU="; repo = "python-tidal";
tag = "v${version}";
hash = "sha256-PSM4aLjvG8b2HG86SCLgPjPo8PECVD5XrNZSbiAxcSk=";
}; };
build-system = [ poetry-core ]; build-system = [
poetry-core
];
dependencies = [ dependencies = [
requests requests
@ -33,13 +37,18 @@ buildPythonPackage rec {
doCheck = false; # tests require internet access doCheck = false; # tests require internet access
pythonImportsCheck = [ "tidalapi" ]; pythonImportsCheck = [
"tidalapi"
];
meta = { meta = {
changelog = "https://github.com/tamland/python-tidal/blob/v${version}/HISTORY.rst"; changelog = "https://github.com/tamland/python-tidal/blob/v${version}/HISTORY.rst";
description = "Unofficial Python API for TIDAL music streaming service"; description = "Unofficial Python API for TIDAL music streaming service";
homepage = "https://github.com/tamland/python-tidal"; homepage = "https://github.com/tamland/python-tidal";
license = lib.licenses.gpl3; license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ drawbu ]; maintainers = with lib.maintainers; [
drawbu
ryand56
];
}; };
} }