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

authored by

Aleksana and committed by
GitHub
7a2509e7 97525c92

+17 -8
+17 -8
pkgs/development/python-modules/tidalapi/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - fetchPypi, 4 + fetchFromGitHub, 5 5 python-dateutil, 6 6 poetry-core, 7 7 requests, ··· 12 12 }: 13 13 buildPythonPackage rec { 14 14 pname = "tidalapi"; 15 - version = "0.8.3"; 15 + version = "0.8.4"; 16 16 pyproject = true; 17 17 18 - src = fetchPypi { 19 - inherit pname version; 20 - hash = "sha256-3I5Xi9vmyAlUNKBmmTuGnetaiiVzL3sEEy31npRZlFU="; 18 + src = fetchFromGitHub { 19 + owner = "EbbLabs"; 20 + repo = "python-tidal"; 21 + tag = "v${version}"; 22 + hash = "sha256-PSM4aLjvG8b2HG86SCLgPjPo8PECVD5XrNZSbiAxcSk="; 21 23 }; 22 24 23 - build-system = [ poetry-core ]; 25 + build-system = [ 26 + poetry-core 27 + ]; 24 28 25 29 dependencies = [ 26 30 requests ··· 33 37 34 38 doCheck = false; # tests require internet access 35 39 36 - pythonImportsCheck = [ "tidalapi" ]; 40 + pythonImportsCheck = [ 41 + "tidalapi" 42 + ]; 37 43 38 44 meta = { 39 45 changelog = "https://github.com/tamland/python-tidal/blob/v${version}/HISTORY.rst"; 40 46 description = "Unofficial Python API for TIDAL music streaming service"; 41 47 homepage = "https://github.com/tamland/python-tidal"; 42 48 license = lib.licenses.gpl3; 43 - maintainers = with lib.maintainers; [ drawbu ]; 49 + maintainers = with lib.maintainers; [ 50 + drawbu 51 + ryand56 52 + ]; 44 53 }; 45 54 }