mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.python-clementine-remote: drop
This commit is contained in:
parent
4f9d1c7a0a
commit
182c0a75bf
3 changed files with 1 additions and 43 deletions
|
|
@ -1,41 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
protobuf,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-clementine-remote";
|
||||
version = "1.0.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jjmontesl";
|
||||
repo = "python-clementine-remote";
|
||||
tag = version;
|
||||
hash = "sha256-tPaxRBvt+tW4yV5Ap3YxMQxK3o7BJF3nP/wzBJeDgic=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ protobuf ];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
env = {
|
||||
# https://github.com/jjmontesl/python-clementine-remote/pull/7
|
||||
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "clementineremote" ];
|
||||
|
||||
meta = {
|
||||
description = "Python library and CLI for the Clementine Music Player remote protocol";
|
||||
homepage = "https://github.com/jjmontesl/python-clementine-remote";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
}
|
||||
|
|
@ -512,6 +512,7 @@ mapAliases {
|
|||
pytestquickcheck = throw "'pytestquickcheck' has been renamed to/replaced by 'pytest-quickcheck'"; # Converted to throw 2025-10-29
|
||||
pytestrunner = throw "'pytestrunner' has been renamed to/replaced by 'pytest-runner'"; # Converted to throw 2025-10-29
|
||||
python-bring-api = throw "python-bring-api was removed because Home Assistant switched to bring-api"; # added 2025-10-03
|
||||
python-clementine-remote = throw "'python-clementine-remote' was removed because Home Assistant droppped the integration"; # Added 2026-06-04
|
||||
python-ethtool = throw "'python-ethtool' has been renamed to/replaced by 'ethtool'"; # Converted to throw 2025-10-29
|
||||
python-igraph = throw "'python-igraph' has been renamed to/replaced by 'igraph'"; # Converted to throw 2025-10-29
|
||||
python-jsonrpc-server = throw "python-jsonrpc-server has been removed because it was no longer used by anything"; # added 2025-11-11
|
||||
|
|
|
|||
|
|
@ -16093,8 +16093,6 @@ self: super: with self; {
|
|||
|
||||
python-citybikes = callPackage ../development/python-modules/python-citybikes { };
|
||||
|
||||
python-clementine-remote = callPackage ../development/python-modules/python-clementine-remote { };
|
||||
|
||||
python-code-minimap = callPackage ../development/python-modules/python-code-minimap { };
|
||||
|
||||
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue