python311Packages.types-docutils: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-06 09:29:26 +02:00
parent 48e2c126fd
commit 926848d9ab
1 changed files with 7 additions and 10 deletions

View File

@ -1,7 +1,8 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
@ -14,16 +15,12 @@ buildPythonPackage rec {
hash = "sha256-6OxKWhJdBthjK7qsihH76hih7fqU35xRKdxFmAkVuEs=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"docutils-stubs"
];
pythonImportsCheck = [ "docutils-stubs" ];
meta = with lib; {
description = "Typing stubs for docutils";