python3Packages.pycaption: 2.2.16 -> 2.2.18

Diff: https://github.com/pbs/pycaption/compare/2.2.16...2.2.18

Changelog: https://github.com/pbs/pycaption/blob/2.2.18/docs/changelog.rst

Changed files
+6 -10
pkgs
development
python-modules
pycaption
+6 -10
pkgs/development/python-modules/pycaption/default.nix
···
{
lib,
buildPythonPackage,
-
pythonOlder,
fetchFromGitHub,
setuptools,
beautifulsoup4,
···
buildPythonPackage rec {
pname = "pycaption";
-
version = "2.2.16";
-
-
disabled = pythonOlder "3.8";
-
+
version = "2.2.18";
pyproject = true;
src = fetchFromGitHub {
owner = "pbs";
repo = "pycaption";
tag = version;
-
hash = "sha256-w617mOxvL1alj7jauH4TVsYO0wxMHIFjevdhb4+542s=";
+
hash = "sha256-7XI7vZiFNIvRD1enXC7SffqGIRMX6lPfcioLPJuszEk=";
};
build-system = [ setuptools ];
···
pytestCheckHook
];
-
meta = with lib; {
-
changelog = "https://github.com/pbs/pycaption/blob/${version}/docs/changelog.rst";
+
meta = {
+
changelog = "https://github.com/pbs/pycaption/blob/${src.tag}/docs/changelog.rst";
description = "Closed caption converter";
homepage = "https://github.com/pbs/pycaption";
-
license = licenses.asl20;
-
maintainers = with maintainers; [ dotlambda ];
+
license = lib.licenses.asl20;
+
maintainers = with lib.maintainers; [ dotlambda ];
};
}