Unverified Commit 95b89eaf authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python310Packages.m3u8: 3.5.0 -> 3.6.0
parents afbee940 53058d1d
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -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 ];
  };