summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/deezer-python
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-12-17 00:02:29 +0000
committerGitHub <noreply@github.com>2023-12-17 00:02:29 +0000
commitbaaaa0fd7d39aba94d6fee673ebc9784dc56ab60 (patch)
tree83d78b2cc7a1bc9e27079d487d74134b92720a9f /pkgs/development/python-modules/deezer-python
parentbe86e6ddfb5cf45f4bc7c388956fa0ddc6f92be8 (diff)
parent74578d8b1aa7205fcbf3e8f64bbcba8a0dcd5367 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/development/python-modules/deezer-python')
-rw-r--r--pkgs/development/python-modules/deezer-python/default.nix20
1 files changed, 13 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/deezer-python/default.nix b/pkgs/development/python-modules/deezer-python/default.nix
index dd9505625af0..84c7972ccd12 100644
--- a/pkgs/development/python-modules/deezer-python/default.nix
+++ b/pkgs/development/python-modules/deezer-python/default.nix
@@ -14,17 +14,22 @@
buildPythonPackage rec {
pname = "deezer-python";
version = "6.1.1";
- format = "pyproject";
+ pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "browniebroke";
- repo = pname;
+ repo = "deezer-python";
rev = "refs/tags/v${version}";
hash = "sha256-pzEXiWKMP2Wqme/pqfTMHxWH/4YcCS6u865wslHrUqI=";
};
+ postPatch = ''
+ substituteInPlace pyproject.toml \
+ --replace " --cov=deezer" ""
+ '';
+
nativeBuildInputs = [
poetry-core
];
@@ -41,15 +46,16 @@ buildPythonPackage rec {
tornado
];
- postPatch = ''
- substituteInPlace pyproject.toml \
- --replace " --cov=deezer" ""
- '';
-
pythonImportsCheck = [
"deezer"
];
+ disabledTests = [
+ # JSONDecodeError issue
+ "test_get_user_flow"
+ "test_with_language_header"
+ ];
+
meta = with lib; {
description = "Python wrapper around the Deezer API";
homepage = "https://github.com/browniebroke/deezer-python";