python3Packages.mpris-server: drop

This commit is contained in:
Henry-Hiles
2025-12-20 15:37:20 -05:00
parent c682d8443e
commit d698f37523
3 changed files with 1 additions and 46 deletions
@@ -1,44 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
emoji,
pydbus,
pygobject3,
unidecode,
setuptools,
strenum,
}:
buildPythonPackage rec {
pname = "mpris-server";
version = "0.9.6";
pyproject = true;
src = fetchPypi {
pname = "mpris_server";
inherit version;
hash = "sha256-T0ZeDQiYIAhKR8aw3iv3rtwzc+R0PTQuIh6+Hi4rIHQ=";
};
build-system = [ setuptools ];
dependencies = [
emoji
pydbus
pygobject3
strenum
unidecode
];
pythonImportsCheck = [ "mpris_server" ];
# upstream has no tests
doCheck = false;
meta = {
description = "Publish a MediaPlayer2 MPRIS device to D-Bus";
homepage = "https://pypi.org/project/mpris-server/";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ quadradical ];
};
}
+1
View File
@@ -272,6 +272,7 @@ mapAliases {
mkdocs-macros = mkdocs-macros-plugin; # added 2025-09-02
mkdocs-minify = throw "'mkdocs-minify' has been renamed to/replaced by 'mkdocs-minify-plugin'"; # Converted to throw 2025-10-29
mne-python = throw "'mne-python' has been renamed to/replaced by 'mne'"; # Converted to throw 2025-10-29
mpris-server = throw "mpris-server was removed because it is unused"; # added 2025-10-31
msldap-bad = throw "'msldap-bad' has been renamed to/replaced by 'badldap'"; # added 2025-11-06
multi_key_dict = throw "'multi_key_dict' has been renamed to/replaced by 'multi-key-dict'"; # Converted to throw 2025-10-29
mutag = throw "mutag has been removed because it is unmaintained since 2018"; # added 2025-05-25
-2
View File
@@ -10004,8 +10004,6 @@ self: super: with self; {
mpmath = callPackage ../development/python-modules/mpmath { };
mpris-server = callPackage ../development/python-modules/mpris-server { };
mprisify = callPackage ../development/python-modules/mprisify { };
mpv = callPackage ../development/python-modules/mpv { inherit (pkgs) mpv; };