Files
Vegard Bieker Matthey 98a5088236 feedparser-sgmllib: init at 2.1.0
Co-authored-by: h7x4 <h7x4@nani.wtf>
Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
2026-08-11 00:36:14 +02:00

35 lines
842 B
Nix

{
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 ];
};
}