python310Packages.tidalapi: 0.7.1 -> 0.7.2

This release fixes a critical bug; version 0.7.1 has not worked with the
current version of the Tidal API for a couple weeks:
https://github.com/tamland/python-tidal/issues/146

0.7.2 also changes the packaging method from setuptools to pyproject.
This commit is contained in:
Evan Goode 2023-07-17 11:22:04 -04:00
parent 5799b3d4dd
commit b673a2eaeb

View File

@ -3,19 +3,24 @@
, buildPythonPackage
, fetchPypi
, python-dateutil
, poetry-core
, requests
}:
buildPythonPackage rec {
pname = "tidalapi";
version = "0.7.1";
format = "setuptools";
version = "0.7.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-ttOjw6VXR36QL/GUQXjpPWrE617Bmdt0piUsA4O5W/g=";
hash = "sha256-CyyvzhuDB9XgroeP+WPTJIufT3VU9fD6Pg2Q1prB0Mo=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
requests
python-dateutil