blob: 25a00bde327c269f9c7ea41651d183c13599db4e (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
buildPythonPackage,
fetchPypi,
spotipy,
click,
pycryptodomex,
mutagen,
requests,
deezer-py,
}:
buildPythonPackage rec {
pname = "deemix";
version = "3.6.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-xEahzA1PIrGPfnnOcuXQLVQpSVOUFk6/0v9ViLgWCwk=";
};
propagatedBuildInputs = [
spotipy
click
pycryptodomex
mutagen
requests
deezer-py
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "deezer" ];
meta = {
description = "Deezer downloader built from the ashes of Deezloader Remix";
mainProgram = "deemix";
homepage = "https://gitlab.com/RemixDev/deemix-py";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ natto1784 ];
};
}
|