anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / audio / mopidy / podcast.nix
blob8af6dff625481817f3bcbd8c8e23f728297167cc
1 { lib, python3Packages, fetchPypi, mopidy }:
3 python3Packages.buildPythonApplication rec {
4   pname = "mopidy-podcast";
5   version = "3.0.1";
7   src = fetchPypi {
8     inherit version;
9     pname = "Mopidy-Podcast";
10     hash = "sha256-grNPVEVM2PlpYhBXe6sabFjWVB9+q+apIRjcHUxH52A=";
11   };
13   propagatedBuildInputs = [
14     mopidy
15     python3Packages.cachetools
16     python3Packages.uritools
17   ];
19   nativeCheckInputs = with python3Packages; [
20     pytestCheckHook
21   ];
23   meta = with lib; {
24     homepage = "https://github.com/tkem/mopidy-podcast";
25     description = "Mopidy extension for browsing and playing podcasts";
26     license = licenses.asl20;
27     maintainers = [
28       maintainers.daneads
29     ];
30   };