python3Packages.python-clementine-remote: init at 1.0.3 (#436247)

This commit is contained in:
Martin Weinelt
2025-08-28 22:03:47 +02:00
committed by GitHub
3 changed files with 45 additions and 1 deletions
@@ -0,0 +1,41 @@
{
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 ];
};
}
@@ -900,7 +900,8 @@
];
"clementine" =
ps: with ps; [
]; # missing inputs: python-clementine-remote
python-clementine-remote
];
"clickatell" =
ps: with ps; [
];
+2
View File
@@ -14603,6 +14603,8 @@ self: super: with self; {
python-cinderclient = callPackage ../development/python-modules/python-cinderclient { };
python-clementine-remote = callPackage ../development/python-modules/python-clementine-remote { };
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };
python-coinmarketcap = callPackage ../development/python-modules/python-coinmarketcap { };