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

python312Packages.m3u8: 4.0.0 -> 4.1.0

authored by Nick Cao and committed by GitHub b9544b1f 14cd758c

+11 -6
+11 -6
pkgs/development/python-modules/m3u8/default.nix
··· 5 , bottle 6 , pytestCheckHook 7 , pythonOlder 8 }: 9 10 buildPythonPackage rec { 11 pname = "m3u8"; 12 - version = "4.0.0"; 13 - format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchFromGitHub { 18 owner = "globocom"; 19 - repo = pname; 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-sxLT3a9f38RZqzEzqyZos3G38vzHPzhMexfBN2qzbxQ="; 22 }; 23 24 - propagatedBuildInputs = [ 25 iso8601 26 ]; 27 ··· 45 meta = with lib; { 46 description = "Python m3u8 parser"; 47 homepage = "https://github.com/globocom/m3u8"; 48 - changelog = "https://github.com/globocom/m3u8/releases/tag//${version}"; 49 license = licenses.mit; 50 maintainers = with maintainers; [ Scriptkiddi ]; 51 };
··· 5 , bottle 6 , pytestCheckHook 7 , pythonOlder 8 + , setuptools 9 }: 10 11 buildPythonPackage rec { 12 pname = "m3u8"; 13 + version = "4.1.0"; 14 + pyproject = true; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchFromGitHub { 19 owner = "globocom"; 20 + repo = "m3u8"; 21 rev = "refs/tags/${version}"; 22 + hash = "sha256-vH5y/fk9dW8w54U3o+70enbTOubV4V0/NVbSSqOY9rQ="; 23 }; 24 25 + build-system = [ 26 + setuptools 27 + ]; 28 + 29 + dependencies = [ 30 iso8601 31 ]; 32 ··· 50 meta = with lib; { 51 description = "Python m3u8 parser"; 52 homepage = "https://github.com/globocom/m3u8"; 53 + changelog = "https://github.com/globocom/m3u8/releases/tag/${version}"; 54 license = licenses.mit; 55 maintainers = with maintainers; [ Scriptkiddi ]; 56 };