summary refs log blame commit diff
path: root/pkgs/development/python-modules/deemix/default.nix
blob: c12bdac5fd0b246c5e51cb22df87876f3043cb9d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                        


                        



                               
                                                                   












                           
 
                        



                    
                                                                               
                                                               



                                                  
{ lib
, buildPythonPackage
, fetchPypi
, spotipy
, click
, pycryptodomex
, mutagen
, requests
, deezer-py
, pythonOlder
}:

buildPythonPackage rec {
  pname = "deemix";
  version = "3.6.6";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-xEahzA1PIrGPfnnOcuXQLVQpSVOUFk6/0v9ViLgWCwk=";
  };

  propagatedBuildInputs = [
    spotipy
    click
    pycryptodomex
    mutagen
    requests
    deezer-py
  ];

  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [
    "deezer"
  ];

  meta = with lib; {
    description = "Deezer downloader built from the ashes of Deezloader Remix";
    homepage = "https://git.freezerapp.xyz/RemixDev/deemix-py";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ natto1784 ];
  };
}