python3Packages.python-clementine-remote: init at 1.0.3

This commit is contained in:
Jamie Magee
2025-08-23 10:27:31 -07:00
parent 1d51b50620
commit e7c7aae4c2
2 changed files with 43 additions and 0 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 ];
};
}
+2
View File
@@ -14575,6 +14575,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 { };