feedparser-sgmllib: init at 2.1.0

Co-authored-by: h7x4 <h7x4@nani.wtf>
Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
(cherry picked from commit 98a5088236)
This commit is contained in:
Vegard Bieker Matthey
2026-08-10 19:51:28 +02:00
committed by github-actions[bot]
parent 23a9453e9e
commit c8ab23b487
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
poetry-core,
}:
buildPythonPackage rec {
pname = "feedparser-sgmllib";
version = "2.1.0";
pyproject = true;
src = fetchPypi {
pname = "feedparser_sgmllib";
inherit version;
hash = "sha256-YfrPKRjEOJtbAHFPdsXgNDH/zZTNH1HWV+3WzXw5ZXk=";
};
build-system = [ poetry-core ];
dependencies = [ ];
doCheck = true;
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "feedparser_sgmllib" ];
meta = {
homepage = "https://pypi.org/project/feedparser-sgmllib/";
changelog = "https://github.com/python-syndication/feedparser-sgmllib/releases/tag/v${version}";
description = "Python 3 port of sgmllib designed for use with feedparser";
license = lib.licenses.psfl;
maintainers = with lib.maintainers; [ ar4m1s ];
};
}

View File

@@ -5545,6 +5545,8 @@ self: super: with self; {
feedparser = callPackage ../development/python-modules/feedparser { };
feedparser-sgmllib = callPackage ../development/python-modules/feedparser-sgmllib { };
fenics-basix = callPackage ../development/python-modules/fenics-basix { };
fenics-dolfinx = callPackage ../development/python-modules/fenics-dolfinx { };