rst2html5: use nixfmt

This commit is contained in:
Fabian Affolter 2024-04-04 10:49:10 +02:00
parent c0d4e83369
commit f8565279a1

View File

@ -1,6 +1,7 @@
{ lib
, python3
, fetchPypi
{
lib,
python3,
fetchPypi,
}:
python3.pkgs.buildPythonPackage rec {
@ -13,9 +14,7 @@ python3.pkgs.buildPythonPackage rec {
hash = "sha256-MJmYyF+rAo8vywGizNyIbbCvxDmCYueVoC6pxNDzKuk=";
};
build-system = with python3.pkgs; [
poetry-core
];
build-system = with python3.pkgs; [ poetry-core ];
dependencies = with python3.pkgs; [
beautifulsoup4
@ -27,11 +26,9 @@ python3.pkgs.buildPythonPackage rec {
# Tests are not shipped as PyPI releases
doCheck = false;
pythonImportsCheck = [
"rst2html5"
];
pythonImportsCheck = [ "rst2html5" ];
meta = with lib;{
meta = with lib; {
description = "Converts ReSTructuredText to (X)HTML5";
homepage = "https://rst2html5.readthedocs.io/";
license = licenses.mit;