blob: 96db7978256584e248def98289769f2ad35f2075 (
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
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
chardet,
pytestCheckHook,
faker,
}:
buildPythonPackage rec {
pname = "mbstrdecoder";
version = "1.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "thombashi";
repo = "mbstrdecoder";
tag = "v${version}";
hash = "sha256-rJ3Q7/xYPO0jBuzhYm2aIhPar2tbJIxHnHR0y0HWtik=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [ chardet ];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ faker ];
meta = {
homepage = "https://github.com/thombashi/mbstrdecoder";
description = "Library for decoding multi-byte character strings";
maintainers = [ ];
license = lib.licenses.mit;
};
}
|