blob: 26452f95c585772794cf04467114bfc3c6b7aaf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
lib,
pythonPackages,
fetchPypi,
mopidy,
}:
pythonPackages.buildPythonApplication (finalAttrs: {
pname = "mopidy-podcast";
version = "3.0.1";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) version;
pname = "Mopidy-Podcast";
hash = "sha256-grNPVEVM2PlpYhBXe6sabFjWVB9+q+apIRjcHUxH52A=";
};
build-system = [
pythonPackages.setuptools
];
dependencies = [
mopidy
pythonPackages.cachetools
pythonPackages.uritools
];
nativeCheckInputs = [
pythonPackages.pytestCheckHook
];
pythonImportsCheck = [ "mopidy_podcast" ];
meta = {
homepage = "https://github.com/tkem/mopidy-podcast";
description = "Mopidy extension for browsing and playing podcasts";
license = lib.licenses.asl20;
maintainers = [
lib.maintainers.daneads
];
};
})
|