12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
22 rev = "refs/tags/${version}";
23 hash = "sha256-1SOuKKNBg67Yc0a6Iqb1goTE7sraptzpFIB2lvrbMQg=";
26 build-system = [ setuptools ];
28 dependencies = [ iso8601 ];
36 # Tests require network access
37 "test_load_should_create_object_from_uri"
38 "test_load_should_create_object_from_uri_with_relative_segments"
39 "test_load_should_remember_redirect"
40 "test_raise_timeout_exception_if_timeout_happens_when_loading_from_uri"
43 pythonImportsCheck = [ "m3u8" ];
46 description = "Python m3u8 parser";
47 homepage = "https://github.com/globocom/m3u8";
48 changelog = "https://github.com/globocom/m3u8/releases/tag/${version}";
49 license = licenses.mit;
50 maintainers = with maintainers; [ Scriptkiddi ];