diff options
| author | Ryan Omasta <git@ryand.ca> | 2025-07-12 01:15:26 -0600 |
|---|---|---|
| committer | Ryan Omasta <git@ryand.ca> | 2025-07-12 01:15:26 -0600 |
| commit | 696ecc14107e4d7c3aedbfbedf342a61baa45485 (patch) | |
| tree | b0dbc54ae3a23d1ddb4490a6d17ebc9e3e635a3e /pkgs/development/python-modules | |
| parent | 77dca01c393e3277f60806d16257c7955824857e (diff) | |
python3Packages.tidalapi: 0.8.3 -> 0.8.4
https://github.com/EbbLabs/python-tidal/releases/tag/v0.8.4
Diff: https://github.com/EbbLabs/python-tidal/compare/v0.8.3...v0.8.4
Diffstat (limited to 'pkgs/development/python-modules')
| -rw-r--r-- | pkgs/development/python-modules/tidalapi/default.nix | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/tidalapi/default.nix b/pkgs/development/python-modules/tidalapi/default.nix index 956846ba82f1..628893235352 100644 --- a/pkgs/development/python-modules/tidalapi/default.nix +++ b/pkgs/development/python-modules/tidalapi/default.nix @@ -1,7 +1,7 @@ { lib, buildPythonPackage, - fetchPypi, + fetchFromGitHub, python-dateutil, poetry-core, requests, @@ -12,15 +12,19 @@ }: buildPythonPackage rec { pname = "tidalapi"; - version = "0.8.3"; + version = "0.8.4"; pyproject = true; - src = fetchPypi { - inherit pname version; - hash = "sha256-3I5Xi9vmyAlUNKBmmTuGnetaiiVzL3sEEy31npRZlFU="; + src = fetchFromGitHub { + owner = "EbbLabs"; + repo = "python-tidal"; + tag = "v${version}"; + hash = "sha256-PSM4aLjvG8b2HG86SCLgPjPo8PECVD5XrNZSbiAxcSk="; }; - build-system = [ poetry-core ]; + build-system = [ + poetry-core + ]; dependencies = [ requests @@ -33,7 +37,9 @@ buildPythonPackage rec { doCheck = false; # tests require internet access - pythonImportsCheck = [ "tidalapi" ]; + pythonImportsCheck = [ + "tidalapi" + ]; meta = { changelog = "https://github.com/tamland/python-tidal/blob/v${version}/HISTORY.rst"; |
