8 buildPythonPackage rec {
13 src = fetchFromGitHub {
15 repo = "python-mpegdash";
17 hash = "sha256-eKtJ+QzeoMog5X1r1ix9vrmGTi/9KzdJiu80vrTX14I=";
20 nativeBuildInputs = [ setuptools ];
21 nativeCheckInputs = [ pytestCheckHook ];
24 # requires network access
25 "test_xml2mpd_from_url"
28 pythonImportsCheck = [ "mpegdash" ];
31 description = "MPEG-DASH MPD(Media Presentation Description) Parser";
32 homepage = "https://github.com/sangwonl/python-mpegdash";
33 license = lib.licenses.mit;
34 maintainers = with lib.maintainers; [ drawbu ];