python310Packages.m3u8: add format

- disable on unsupported Python releases
This commit is contained in:
Fabian Affolter 2023-09-23 12:37:26 +02:00 committed by GitHub
parent 8379f8a664
commit 53058d1d8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,11 +4,15 @@
, iso8601 , iso8601
, bottle , bottle
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "m3u8"; pname = "m3u8";
version = "3.6.0"; version = "3.6.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "globocom"; owner = "globocom";