deemix: drop
It now is part of nixpkgs upstream.
This commit is contained in:
parent
6acbe09487
commit
1e61c1b7cf
|
@ -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;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -8,8 +8,6 @@ in
|
||||||
python3 = prev.python3.override {
|
python3 = prev.python3.override {
|
||||||
packageOverrides = final: prev:
|
packageOverrides = final: prev:
|
||||||
{
|
{
|
||||||
deezer-py = callPythonPackage ./python-modules/deezer-py { };
|
|
||||||
|
|
||||||
enlighten = callPythonPackage ./python-modules/enlighten { };
|
enlighten = callPythonPackage ./python-modules/enlighten { };
|
||||||
|
|
||||||
prefixed = callPythonPackage ./python-modules/prefixed { };
|
prefixed = callPythonPackage ./python-modules/prefixed { };
|
||||||
|
@ -19,7 +17,6 @@ in
|
||||||
|
|
||||||
colorchord2 = callPackage ./colorchord2 { };
|
colorchord2 = callPackage ./colorchord2 { };
|
||||||
|
|
||||||
deemix = callPythonPackage ./deemix { };
|
|
||||||
|
|
||||||
fSpy = callPackage ./fSpy { };
|
fSpy = callPackage ./fSpy { };
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,6 @@
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
VisiCut
|
VisiCut
|
||||||
colorchord2
|
colorchord2
|
||||||
deemix
|
|
||||||
fSpy
|
fSpy
|
||||||
face_morpher
|
face_morpher
|
||||||
gust_tools
|
gust_tools
|
||||||
|
|
|
@ -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 Deezer’s APIs";
|
|
||||||
homepage = "https://gitlab.com/RemixDev/deezer-py";
|
|
||||||
license = licenses.lgpl3Plus;
|
|
||||||
maintainers = with maintainers; [ sbruder ];
|
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue