Merge pull request #255576 from r-ryantm/auto-update/python310Packages.m3u8

python310Packages.m3u8: 3.5.0 -> 3.6.0
This commit is contained in:
Fabian Affolter 2023-09-23 13:34:11 +02:00 committed by GitHub
commit 95b89eaf77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,17 +4,21 @@
, iso8601
, bottle
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "m3u8";
version = "3.5.0";
version = "3.6.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "globocom";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-9Xmbc1aL7SI24FFn0/5KJtAM3+Xyvd3bwUh8DU1wGKE=";
hash = "sha256-JLYRkibcvmNct2eIBfBP7z3gR680xhZL/Kn/1S7feoo=";
};
propagatedBuildInputs = [
@ -38,8 +42,9 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = "https://github.com/globocom/m3u8";
description = "Python m3u8 parser";
homepage = "https://github.com/globocom/m3u8";
changelog = "https://github.com/globocom/m3u8/releases/tag//${version}";
license = licenses.mit;
maintainers = with maintainers; [ Scriptkiddi ];
};