mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 10:14:48 +00:00
Co-authored-by: h7x4 <h7x4@nani.wtf> Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
35 lines
842 B
Nix
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 ];
|
|
};
|
|
}
|