blob: a70d819080c5ec0af3de11c275d128c4cc09ecc1 (
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
44
45
46
47
48
49
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
iso8601,
bottle,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "m3u8";
version = "6.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "globocom";
repo = "m3u8";
tag = version;
hash = "sha256-1SOuKKNBg67Yc0a6Iqb1goTE7sraptzpFIB2lvrbMQg=";
};
build-system = [ setuptools ];
dependencies = [ iso8601 ];
nativeCheckInputs = [
bottle
pytestCheckHook
];
disabledTests = [
# Tests require network access
"test_load_should_create_object_from_uri"
"test_load_should_create_object_from_uri_with_relative_segments"
"test_load_should_remember_redirect"
"test_raise_timeout_exception_if_timeout_happens_when_loading_from_uri"
];
pythonImportsCheck = [ "m3u8" ];
meta = {
description = "Python m3u8 parser";
homepage = "https://github.com/globocom/m3u8";
changelog = "https://github.com/globocom/m3u8/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Scriptkiddi ];
};
}
|