Files
nixpkgs/pkgs/development/python-modules/genshi/default.nix
Fabian Affolter b36f03172c python3Packages.genshi: 0.7.10 -> 0.7.11
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:24 +02:00

34 lines
778 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools_80,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "genshi";
version = "0.7.11";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-gsT5u/SwO+UWKiTW2OT9v+PtJgLT68v1BaMzUKN53Lc=";
};
build-system = [ setuptools_80 ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Python components for parsing HTML, XML and other textual content";
longDescription = ''
Python library that provides an integrated set of components for
parsing, generating, and processing HTML, XML or other textual
content for output generation on the web.
'';
homepage = "https://genshi.edgewall.org/";
license = lib.licenses.bsd0;
};
}