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-05-15 15:35:15 +00:00
|
|
|
version = "2.7.7";
|
2022-11-27 09:42:12 +00:00
|
|
|
format = "setuptools";
|
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-05-15 15:35:15 +00:00
|
|
|
sha256 = "sha256-/QQb8xbi0rv5dU3WFr/hm2BuM/iDZ2OhrGjuqsQMqdk=";
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
docopt
|
|
|
|
mutagen
|
|
|
|
termcolor
|
|
|
|
requests
|
|
|
|
clint
|
|
|
|
pathvalidate
|
|
|
|
soundcloud-v2
|
|
|
|
];
|
|
|
|
|
|
|
|
# No tests in repository
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "scdl" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Download Music from Souncloud";
|
|
|
|
homepage = "https://github.com/flyingrub/scdl";
|
|
|
|
license = licenses.gpl2Only;
|
2024-05-15 15:35:15 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "scdl";
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
}
|