Files
nixpkgs/pkgs/development/python-modules/genshi/default.nix
T
Martin Weinelt 624817a54a python3Packages.genshi: 0.7.9 -> 0.7.10
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:08 +01:00

34 lines
772 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "genshi";
version = "0.7.10";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-hbDbETYlMU8PRPP+bvDrJWTWw03S7lZ3tJXRUUK7SXM=";
};
build-system = [ setuptools ];
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;
};
}