1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 requests,
6 pythonOlder,
7}:
8
9buildPythonPackage rec {
10 pname = "deezer-py";
11 version = "1.3.7";
12 format = "setuptools";
13 disabled = pythonOlder "3.6";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-saMy+IeAy6H9SgS8XHnZ9klFerGyr+vQqhuCtimgbEo=";
18 };
19
20 propagatedBuildInputs = [ requests ];
21
22 # Project has no tests
23 doCheck = false;
24 pythonImportsCheck = [ "requests" ];
25
26 meta = with lib; {
27 homepage = "https://gitlab.com/RemixDev/deezer-py";
28 description = "Wrapper for all Deezer's APIs";
29 license = licenses.gpl3Plus;
30 maintainers = with maintainers; [ natto1784 ];
31 };
32}