about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/scdl/default.nix
blob: 5f9cb2e3afb319bd8d856e886848995aa3787c2d (plain) (blame)
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
{ lib, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "scdl";
  version = "2.7.2";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "7d6212591a5bccf017424f732535475fb9ae3bab26a4fb5bc36064962d33f8e0";
  };

  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 ];
  };
}