blob: 740e6c19d4a5551b21e42d6e6b463de916e1df7c (
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
42
43
44
45
46
47
48
49
50
51
52
53
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
mbstrdecoder,
python-dateutil,
pytz,
packaging,
pytestCheckHook,
tcolorpy,
}:
buildPythonPackage rec {
pname = "typepy";
version = "1.3.4";
pyproject = true;
src = fetchFromGitHub {
owner = "thombashi";
repo = "typepy";
tag = "v${version}";
hash = "sha256-lgwXoEtv2nBRKiWQH5bDrAIfikKN3cOqcHLEdnSAMpc=";
};
build-system = [ setuptools-scm ];
dependencies = [ mbstrdecoder ];
optional-dependencies = {
datetime = [
python-dateutil
pytz
packaging
];
};
nativeCheckInputs = [
pytestCheckHook
tcolorpy
]
++ lib.concatAttrValues optional-dependencies;
pythonImportsCheck = [ "typepy" ];
meta = {
description = "Library for variable type checker/validator/converter at a run time";
homepage = "https://github.com/thombashi/typepy";
changelog = "https://github.com/thombashi/typepy/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|