nixpkgs-suyu/pkgs/tools/misc/scdl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
733 B
Nix
Raw Normal View History

2022-07-26 06:20:00 +02:00
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "scdl";
2022-11-23 05:20:00 +01:00
version = "2.7.3";
format = "setuptools";
2022-07-26 06:20:00 +02:00
src = python3Packages.fetchPypi {
inherit pname version;
2022-11-23 05:20:00 +01:00
sha256 = "60284b7b058040d4847f2e4b0ab906b10e959d51f976a0188641e8e10685474f";
2022-07-26 06:20:00 +02: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;
maintainers = with maintainers; [ marsam ];
};
}