2019-11-25 08:18:52 +00:00
|
|
|
{ lib, buildPythonPackage, python, fetchFromGitHub, requests, iso8601, bottle, pytest, pytestcov }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "m3u8";
|
2020-05-09 11:01:56 +01:00
|
|
|
version = "0.6.0";
|
2019-11-25 08:18:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "globocom";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-05-09 11:01:56 +01:00
|
|
|
sha256 = "0cmg993icpsa1b19kljxvjwhs167bsqrs0ad4wnwsi8qq6na5d4p";
|
2019-11-25 08:18:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ bottle pytest pytestcov ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest tests/test_{parser,model,variant_m3u8}.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests iso8601 ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/globocom/m3u8";
|
|
|
|
description = "Python m3u8 parser";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ Scriptkiddi ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|