summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/doc8/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/doc8/default.nix')
-rw-r--r--pkgs/development/python-modules/doc8/default.nix41
1 files changed, 18 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/doc8/default.nix b/pkgs/development/python-modules/doc8/default.nix
index 48c00b0d5cc3..bd47412044f6 100644
--- a/pkgs/development/python-modules/doc8/default.nix
+++ b/pkgs/development/python-modules/doc8/default.nix
@@ -1,17 +1,18 @@
-{ lib
-, buildPythonPackage
-, chardet
-, docutils
-, fetchpatch
-, fetchPypi
-, pbr
-, pygments
-, pytestCheckHook
-, pythonOlder
-, restructuredtext-lint
-, setuptools-scm
-, stevedore
-, wheel
+{
+ lib,
+ buildPythonPackage,
+ chardet,
+ docutils,
+ fetchpatch,
+ fetchPypi,
+ pbr,
+ pygments,
+ pytestCheckHook,
+ pythonOlder,
+ restructuredtext-lint,
+ setuptools-scm,
+ stevedore,
+ wheel,
}:
buildPythonPackage rec {
@@ -40,9 +41,7 @@ buildPythonPackage rec {
wheel
];
- buildInputs = [
- pbr
- ];
+ buildInputs = [ pbr ];
propagatedBuildInputs = [
docutils
@@ -52,13 +51,9 @@ buildPythonPackage rec {
pygments
];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "doc8"
- ];
+ pythonImportsCheck = [ "doc8" ];
meta = with lib; {
description = "Style checker for Sphinx (or other) RST documentation";