2021-04-23 04:20:22 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2021-10-17 12:30:14 +02:00
|
|
|
, environs
|
2021-04-23 04:20:22 +02:00
|
|
|
, fetchFromGitHub
|
2021-09-20 09:20:07 +02:00
|
|
|
, poetry-core
|
|
|
|
, pytest-mock
|
|
|
|
, pytest-vcr
|
|
|
|
, pytestCheckHook
|
2021-04-23 04:20:22 +02:00
|
|
|
, pythonOlder
|
|
|
|
, requests
|
|
|
|
, tornado
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "deezer-python";
|
2023-10-19 12:36:15 +02:00
|
|
|
version = "6.1.1";
|
2023-12-16 15:00:58 +01:00
|
|
|
pyproject = true;
|
2021-04-23 04:20:22 +02:00
|
|
|
|
2022-06-07 18:43:17 +02:00
|
|
|
disabled = pythonOlder "3.7";
|
2021-09-20 09:20:07 +02:00
|
|
|
|
2021-04-23 04:20:22 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "browniebroke";
|
2023-12-16 15:00:58 +01:00
|
|
|
repo = "deezer-python";
|
2022-04-23 16:07:37 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-10-19 12:36:15 +02:00
|
|
|
hash = "sha256-pzEXiWKMP2Wqme/pqfTMHxWH/4YcCS6u865wslHrUqI=";
|
2021-04-23 04:20:22 +02:00
|
|
|
};
|
|
|
|
|
2023-12-16 15:00:58 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace " --cov=deezer" ""
|
|
|
|
'';
|
|
|
|
|
2021-04-23 04:20:22 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
poetry-core
|
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2021-10-17 12:30:14 +02:00
|
|
|
environs
|
2021-09-20 09:20:07 +02:00
|
|
|
pytest-mock
|
2021-10-17 12:30:14 +02:00
|
|
|
pytest-vcr
|
|
|
|
pytestCheckHook
|
2021-04-23 04:20:22 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
requests
|
|
|
|
tornado
|
|
|
|
];
|
|
|
|
|
2022-06-07 18:43:17 +02:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"deezer"
|
|
|
|
];
|
2021-09-20 09:20:07 +02:00
|
|
|
|
2023-12-16 15:00:58 +01:00
|
|
|
disabledTests = [
|
|
|
|
# JSONDecodeError issue
|
|
|
|
"test_get_user_flow"
|
|
|
|
"test_with_language_header"
|
|
|
|
];
|
|
|
|
|
2021-04-23 04:20:22 +02:00
|
|
|
meta = with lib; {
|
2021-10-17 12:30:14 +02:00
|
|
|
description = "Python wrapper around the Deezer API";
|
2021-04-23 04:20:22 +02:00
|
|
|
homepage = "https://github.com/browniebroke/deezer-python";
|
2022-11-22 18:42:53 +01:00
|
|
|
changelog = "https://github.com/browniebroke/deezer-python/releases/tag/v${version}";
|
2021-04-23 04:20:22 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ synthetica ];
|
|
|
|
};
|
|
|
|
}
|