python312Packages.protego: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-05 16:38:36 +02:00
parent ee4e254e14
commit 7ce68d2652
1 changed files with 10 additions and 15 deletions

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -19,17 +20,11 @@ buildPythonPackage rec {
hash = "sha256-6UQw0NJcu/I5vISdhsXlRPveUx/Mz6BZlTx9o0ShcSw=";
};
nativeBuildInputs = [
setuptools
];
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"protego"
];
pythonImportsCheck = [ "protego" ];
meta = with lib; {
description = "Module to parse robots.txt files with support for modern conventions";