Merge pull request #300857 from r-ryantm/auto-update/python312Packages.m3u8

python312Packages.m3u8: 4.0.0 -> 4.1.0
This commit is contained in:
Nick Cao 2024-04-02 09:05:58 -04:00 committed by GitHub
commit b9544b1f17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,23 +5,28 @@
, bottle
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "m3u8";
version = "4.0.0";
format = "setuptools";
version = "4.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "globocom";
repo = pname;
repo = "m3u8";
rev = "refs/tags/${version}";
hash = "sha256-sxLT3a9f38RZqzEzqyZos3G38vzHPzhMexfBN2qzbxQ=";
hash = "sha256-vH5y/fk9dW8w54U3o+70enbTOubV4V0/NVbSSqOY9rQ=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
iso8601
];
@ -45,7 +50,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python m3u8 parser";
homepage = "https://github.com/globocom/m3u8";
changelog = "https://github.com/globocom/m3u8/releases/tag//${version}";
changelog = "https://github.com/globocom/m3u8/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ Scriptkiddi ];
};