blob: bb9461d42380b27bb918b0c2137eb8d96fb3b1b9 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest-cov-stub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "podcastparser";
version = "0.6.11";
pyproject = true;
src = fetchFromGitHub {
owner = "gpodder";
repo = "podcastparser";
tag = version;
hash = "sha256-eF/YHKSCMZnavkoX3LcAFHPSPABijn+aPVzaeRYY3WI=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "podcastparser" ];
meta = {
description = "Module to parse podcasts";
homepage = "http://gpodder.org/podcastparser/";
changelog = "https://github.com/gpodder/podcastparser/releases/tag/${src.tag}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ mic92 ];
};
}
|