python3Packages.pycmus: init at 0.1.1

This commit is contained in:
Jamie Magee
2025-08-23 21:21:41 -07:00
parent b8e538eabf
commit 5b727d64ca
2 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchPypi,
pbr,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "pycmus";
version = "0.1.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Wk9J/XjKZB13o8QmdByVWHcAdfNOicwLaH2Sh4qJcIw=";
};
build-system = [
pbr
setuptools
];
dependencies = [
six
];
# No tests available
doCheck = false;
pythonImportsCheck = [
"pycmus"
];
meta = {
description = "Python library for sending commands to the cmus music player";
homepage = "https://github.com/mtreinish/pycmus";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.jamiemagee ];
};
}

View File

@@ -12597,6 +12597,8 @@ self: super: with self; {
pycmarkgfm = callPackage ../development/python-modules/pycmarkgfm { };
pycmus = callPackage ../development/python-modules/pycmus { };
pycocotools = callPackage ../development/python-modules/pycocotools { };
pycodestyle = callPackage ../development/python-modules/pycodestyle { };