Files
nixpkgs/pkgs/development/python-modules/genshi/default.nix
2026-07-02 23:07:27 +02:00

34 lines
778 B
Nix

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