2023-07-15 17:15:38 +00:00
|
|
|
{ lib, python3Packages, fetchPypi }:
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "scdl";
|
2024-07-31 10:19:44 +00:00
|
|
|
version = "2.11.3";
|
2024-06-05 15:53:02 +00:00
|
|
|
pyproject = true;
|
2022-08-12 12:06:08 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2022-08-12 12:06:08 +00:00
|
|
|
inherit pname version;
|
2024-07-31 10:19:44 +00:00
|
|
|
hash = "sha256-3GmmGZ2uTE2T0GagWzBdbtFsTU3pcRxh0uh6/V16cUw=";
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
build-system = [ python3Packages.setuptools ];
|
|
|
|
|
|
|
|
dependencies = with python3Packages; [
|
2024-07-27 06:49:29 +00:00
|
|
|
docopt-ng
|
2022-08-12 12:06:08 +00:00
|
|
|
mutagen
|
|
|
|
termcolor
|
|
|
|
requests
|
2024-07-27 06:49:29 +00:00
|
|
|
tqdm
|
2022-08-12 12:06:08 +00:00
|
|
|
pathvalidate
|
|
|
|
soundcloud-v2
|
2024-07-27 06:49:29 +00:00
|
|
|
filelock
|
2022-08-12 12:06:08 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# No tests in repository
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "scdl" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-07-27 06:49:29 +00:00
|
|
|
description = "Download Music from Soundcloud";
|
2022-08-12 12:06:08 +00:00
|
|
|
homepage = "https://github.com/flyingrub/scdl";
|
|
|
|
license = licenses.gpl2Only;
|
2024-07-31 10:19:44 +00:00
|
|
|
maintainers = [ ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "scdl";
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
}
|