mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
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:
committed by
github-actions[bot]
parent
23a9453e9e
commit
c8ab23b487
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user