nixpkgs/pkgs/development/python-modules/m3u8/default.nix

30 lines
704 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, python, fetchFromGitHub, requests, iso8601, bottle, pytest, pytest-cov }:
2019-11-25 08:18:52 +00:00
buildPythonPackage rec {
pname = "m3u8";
2020-05-09 10:01:56 +00:00
version = "0.6.0";
2019-11-25 08:18:52 +00:00
src = fetchFromGitHub {
owner = "globocom";
repo = pname;
rev = version;
2020-05-09 10:01:56 +00:00
sha256 = "0cmg993icpsa1b19kljxvjwhs167bsqrs0ad4wnwsi8qq6na5d4p";
2019-11-25 08:18:52 +00:00
};
checkInputs = [ bottle pytest pytest-cov ];
2019-11-25 08:18:52 +00:00
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 ];
};
}