about summary refs log tree commit diff
path: root/pkgs/by-name/rs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-04-04 10:49:10 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-04-04 10:49:10 +0200
commitf8565279a1c8382697809d849d2fc35c8edd0585 (patch)
tree8a9ffe31bf89ffaa85d43c10999cc17755ea6c95 /pkgs/by-name/rs
parentc0d4e83369bd8828ae43974e91bfde3dab299ea9 (diff)
rst2html5: use nixfmt
Diffstat (limited to 'pkgs/by-name/rs')
-rw-r--r--pkgs/by-name/rs/rst2html5/package.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/by-name/rs/rst2html5/package.nix b/pkgs/by-name/rs/rst2html5/package.nix
index 17e814bfea3ad..988484237490a 100644
--- a/pkgs/by-name/rs/rst2html5/package.nix
+++ b/pkgs/by-name/rs/rst2html5/package.nix
@@ -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;