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