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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
{
lib,
ahocorasick-rs,
babel,
banal,
buildPythonPackage,
fetchFromGitHub,
fingerprints,
hatchling,
jellyfish,
jinja2,
normality,
orjson,
pytestCheckHook,
python-stdnum,
pytz,
pyyaml,
rapidfuzz,
typing-extensions,
}:
buildPythonPackage rec {
pname = "rigour";
version = "1.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "opensanctions";
repo = "rigour";
tag = "v${version}";
hash = "sha256-c0/wLo2/ZFaFiSV7jOb9th0CNim0XymL8MO6IEYfyhw=";
};
build-system = [
hatchling
];
dependencies = [
ahocorasick-rs
babel
banal
fingerprints
jellyfish
jinja2
normality
orjson
python-stdnum
pytz
pyyaml
rapidfuzz
typing-extensions
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"rigour"
"rigour.names"
"rigour.ids"
"rigour.langs"
"rigour.mime"
"rigour.addresses"
];
meta = {
description = "Data cleaning and validation functions for names, languages, identifiers, etc";
homepage = "https://opensanctions.github.io/rigour";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
|