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