python312Packages.protego: refactor

This commit is contained in:
Fabian Affolter 2024-04-05 16:38:09 +02:00
parent 099e51a6b1
commit ee4e254e14

View File

@ -3,12 +3,13 @@
, fetchPypi , fetchPypi
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "protego"; pname = "protego";
version = "0.3.1"; version = "0.3.1";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -18,15 +19,23 @@ buildPythonPackage rec {
hash = "sha256-6UQw0NJcu/I5vISdhsXlRPveUx/Mz6BZlTx9o0ShcSw="; hash = "sha256-6UQw0NJcu/I5vISdhsXlRPveUx/Mz6BZlTx9o0ShcSw=";
}; };
nativeCheckInputs = [ pytestCheckHook ]; nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [ "protego" ]; nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"protego"
];
meta = with lib; { meta = with lib; {
description = "A pure-Python robots.txt parser with support for modern conventions"; description = "Module to parse robots.txt files with support for modern conventions";
homepage = "https://github.com/scrapy/protego"; homepage = "https://github.com/scrapy/protego";
changelog = "https://github.com/scrapy/protego/blob/${version}/CHANGELOG.rst"; changelog = "https://github.com/scrapy/protego/blob/${version}/CHANGELOG.rst";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.marsam ]; maintainers = with maintainers; [ marsam ];
}; };
} }