75468c3907
Mopidy extension for browsing and playing podcasts Update maintainer + add py3 tests
32 lines
703 B
Nix
32 lines
703 B
Nix
{ lib, python3Packages, mopidy }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "mopidy-podcast";
|
|
version = "3.0.0";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit version;
|
|
pname = "Mopidy-Podcast";
|
|
sha256 = "1z2b523yvdpcf8p7m7kczrvaw045lmxzhq4qj00dflxa2yw61qxr";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
python3Packages.cachetools
|
|
python3Packages.uritools
|
|
];
|
|
|
|
checkInputs = with python3Packages; [
|
|
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
|
|
];
|
|
};
|
|
}
|