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

View File

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