python3Packages.pyspotify: remove
This commit is contained in:
parent
eaf436cc25
commit
645f612c40
@ -1,45 +0,0 @@
|
|||||||
{ lib
|
|
||||||
, stdenv
|
|
||||||
, buildPythonPackage
|
|
||||||
, fetchFromGitHub
|
|
||||||
, cffi
|
|
||||||
, libspotify
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "pyspotify";
|
|
||||||
version = "2.1.3";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "mopidy";
|
|
||||||
repo = "pyspotify";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "sha256-CjIRwSlR5HPOJ9tp7lrdcDPiKH3p/PxvEJ8sqVD5s3Q=";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ cffi ];
|
|
||||||
buildInputs = [ libspotify ];
|
|
||||||
|
|
||||||
# python zip complains about old timestamps
|
|
||||||
preConfigure = ''
|
|
||||||
find -print0 | xargs -0 touch
|
|
||||||
'';
|
|
||||||
|
|
||||||
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
||||||
find "$out" -name _spotify.so -exec \
|
|
||||||
install_name_tool -change \
|
|
||||||
@loader_path/../Frameworks/libspotify.framework/libspotify \
|
|
||||||
${libspotify}/lib/libspotify.dylib \
|
|
||||||
{} \;
|
|
||||||
'';
|
|
||||||
|
|
||||||
# There are no tests
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
homepage = "http://pyspotify.mopidy.com";
|
|
||||||
description = "A Python interface to Spotify’s online music streaming service";
|
|
||||||
license = licenses.unfree;
|
|
||||||
maintainers = with maintainers; [ lovek323 ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -112,6 +112,7 @@ mapAliases ({
|
|||||||
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
|
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
|
||||||
pyreadability = readability-lxml; # added 2022-05-24
|
pyreadability = readability-lxml; # added 2022-05-24
|
||||||
pysmart-smartx = pysmart; # added 2021-10-22
|
pysmart-smartx = pysmart; # added 2021-10-22
|
||||||
|
pyspotify = throw "pyspotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29
|
||||||
pytest_6 = pytest; # added 2022-02-10
|
pytest_6 = pytest; # added 2022-02-10
|
||||||
pytestcov = pytest-cov; # added 2021-01-04
|
pytestcov = pytest-cov; # added 2021-01-04
|
||||||
pytest-pep8 = pytestpep8; # added 2021-01-04
|
pytest-pep8 = pytestpep8; # added 2021-01-04
|
||||||
|
@ -8079,8 +8079,6 @@ in {
|
|||||||
|
|
||||||
pyspnego = callPackage ../development/python-modules/pyspnego { };
|
pyspnego = callPackage ../development/python-modules/pyspnego { };
|
||||||
|
|
||||||
pyspotify = callPackage ../development/python-modules/pyspotify { };
|
|
||||||
|
|
||||||
pysptk = callPackage ../development/python-modules/pysptk { };
|
pysptk = callPackage ../development/python-modules/pysptk { };
|
||||||
|
|
||||||
pysqlcipher3 = callPackage ../development/python-modules/pysqlcipher3 {
|
pysqlcipher3 = callPackage ../development/python-modules/pysqlcipher3 {
|
||||||
|
Loading…
Reference in New Issue
Block a user