python313Packages.pyforked-daapd: init at 0.1.14

This commit is contained in:
Jamie Magee
2025-07-07 21:50:30 -07:00
parent 62004c4187
commit fbfb46ec36
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
aiohttp,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyforked-daapd";
version = "0.1.14";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-v1NOlwP8KtBsQiqwbx1y8p8lABEuEJdNhvR2kGzLxKs=";
};
build-system = [
setuptools
];
dependencies = [
aiohttp
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pyforked_daapd"
];
# Tests require a running forked-daapd server
doCheck = false;
meta = with lib; {
description = "Python interface for forked-daapd";
homepage = "https://github.com/uvjustin/pyforked-daapd";
changelog = "https://github.com/uvjustin/pyforked-daapd/blob/v${version}/CHANGES.txt";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}
+2
View File
@@ -12719,6 +12719,8 @@ self: super: with self; {
pyfnip = callPackage ../development/python-modules/pyfnip { };
pyforked-daapd = callPackage ../development/python-modules/pyforked-daapd { };
pyformlang = callPackage ../development/python-modules/pyformlang { };
pyfreedompro = callPackage ../development/python-modules/pyfreedompro { };