deemix: drop

It now is part of nixpkgs upstream.
master
Simon Bruder 2022-11-04 21:03:45 +01:00
parent 6acbe09487
commit 1e61c1b7cf
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
4 changed files with 0 additions and 74 deletions

View File

@ -1,40 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, click
, deezer-py
, eventlet
, mutagen
, pycryptodomex
, requests
, spotipy
}:
buildPythonPackage rec {
pname = "deemix";
version = "3.4.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-cSLjbowG98pbEzGB17Rkhli90xeOyzOcEglXb5SeNJE=";
};
propagatedBuildInputs = [
click
deezer-py
mutagen
pycryptodomex
requests
spotipy
];
doCheck = false; # error: protocol not found
meta = with lib; {
description = "A python library that lets you download millions of songs, soundtracks, albums in high-quality mp3 and FLAC";
homepage = "https://deemix.app/";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}

View File

@ -8,8 +8,6 @@ in
python3 = prev.python3.override {
packageOverrides = final: prev:
{
deezer-py = callPythonPackage ./python-modules/deezer-py { };
enlighten = callPythonPackage ./python-modules/enlighten { };
prefixed = callPythonPackage ./python-modules/prefixed { };
@ -19,7 +17,6 @@ in
colorchord2 = callPackage ./colorchord2 { };
deemix = callPythonPackage ./deemix { };
fSpy = callPackage ./fSpy { };

View File

@ -48,7 +48,6 @@
inherit (pkgs)
VisiCut
colorchord2
deemix
fSpy
face_morpher
gust_tools

View File

@ -1,30 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
, eventlet
}:
buildPythonPackage rec {
pname = "deezer-py";
version = "1.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-FdLSJFALeGcecLAHk9khJTKlMd3Mec/w/PGQOHqxYMQ=";
};
propagatedBuildInputs = [
requests
];
doCheck = false; # OSError: protocol not found
meta = with lib; {
description = "A python wrapper for all Deezers APIs";
homepage = "https://gitlab.com/RemixDev/deezer-py";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}