blob: a9099b24bcb95e4d8d252f6468404737c0e2ede6 (
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
35
36
37
38
39
40
|
{
lib,
fetchPypi,
buildPythonPackage,
flit-core,
polib,
click,
}:
buildPythonPackage rec {
pname = "lingua";
version = "4.15.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-DhqUZ0HbKIpANhrQT/OP4EvwgZg0uKu4TEtTX+2bpO8=";
};
postPatch = ''
substituteInPlace src/lingua/extract.py \
--replace-fail SafeConfigParser ConfigParser
'';
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
click
polib
];
pythonImportsCheck = [ "lingua" ];
meta = {
description = "Translation toolset";
homepage = "https://github.com/wichert/lingua";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ np ];
};
}
|