blob: d5e66765082cbce1449affdb8bd33b488ceae418 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "protego";
version = "0.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "scrapy";
repo = "protego";
tag = version;
hash = "sha256-70/DPap3FgLfh4ldYSve5Pt8o7gM1lME/OmRFaew/38=";
};
build-system = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "protego" ];
meta = {
description = "Module to parse robots.txt files with support for modern conventions";
homepage = "https://github.com/scrapy/protego";
changelog = "https://github.com/scrapy/protego/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|