nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python312Packages.tidalapi: 0.7.6 -> 0.8.3

https://github.com/tamland/python-tidal/blob/v0.8.3/HISTORY.rst

+5 -5
+5 -5
pkgs/development/python-modules/tidalapi/default.nix
··· 12 12 }: 13 13 buildPythonPackage rec { 14 14 pname = "tidalapi"; 15 - version = "0.7.6"; 15 + version = "0.8.3"; 16 16 pyproject = true; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-X6U34T1sM4P+JFpOfcI7CmULcGZ4SCXwP2fFHKi1cWE="; 20 + hash = "sha256-3I5Xi9vmyAlUNKBmmTuGnetaiiVzL3sEEy31npRZlFU="; 21 21 }; 22 22 23 - nativeBuildInputs = [ poetry-core ]; 23 + build-system = [ poetry-core ]; 24 24 25 - propagatedBuildInputs = [ 25 + dependencies = [ 26 26 requests 27 27 python-dateutil 28 28 mpegdash ··· 36 36 pythonImportsCheck = [ "tidalapi" ]; 37 37 38 38 meta = { 39 - changelog = "https://github.com/tamland/python-tidal/releases/tag/v${version}"; 39 + changelog = "https://github.com/tamland/python-tidal/blob/v${version}/HISTORY.rst"; 40 40 description = "Unofficial Python API for TIDAL music streaming service"; 41 41 homepage = "https://github.com/tamland/python-tidal"; 42 42 license = lib.licenses.gpl3;