2023-07-15 17:15:38 +00:00
|
|
|
{ lib, python3Packages, fetchPypi, mopidy }:
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "mopidy-podcast";
|
2024-01-25 14:12:00 +00:00
|
|
|
version = "3.0.1";
|
2021-05-03 20:48:10 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2021-05-03 20:48:10 +00:00
|
|
|
inherit version;
|
|
|
|
pname = "Mopidy-Podcast";
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-grNPVEVM2PlpYhBXe6sabFjWVB9+q+apIRjcHUxH52A=";
|
2021-05-03 20:48:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
mopidy
|
|
|
|
python3Packages.cachetools
|
|
|
|
python3Packages.uritools
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = with python3Packages; [
|
2021-05-03 20:48:10 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/tkem/mopidy-podcast";
|
|
|
|
description = "Mopidy extension for browsing and playing podcasts";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [
|
|
|
|
maintainers.daneads
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|