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
|
{
lib,
buildPythonPackage,
cython,
fetchFromGitHub,
msgpack,
pytestCheckHook,
pythonOlder,
pyyaml,
ruamel-yaml,
setuptools,
toml,
tomli,
tomli-w,
}:
buildPythonPackage rec {
pname = "python-box";
version = "7.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "cdgriffith";
repo = "Box";
tag = version;
hash = "sha256-aVPjIoizqC0OcG5ziy/lvp/JsFSUvcLUqJ03mKViKFs=";
};
build-system = [
cython
setuptools
];
optional-dependencies = {
all = [
msgpack
ruamel-yaml
toml
];
yaml = [ ruamel-yaml ];
ruamel-yaml = [ ruamel-yaml ];
PyYAML = [ pyyaml ];
tomli = [ tomli-w ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
toml = [ toml ];
msgpack = [ msgpack ];
};
nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.all;
disabledTests = [
# ruamel 8.18.13 update changed white space rules
"test_to_yaml_ruamel"
];
pythonImportsCheck = [ "box" ];
meta = {
description = "Python dictionaries with advanced dot notation access";
homepage = "https://github.com/cdgriffith/Box";
changelog = "https://github.com/cdgriffith/Box/blob/${version}/CHANGES.rst";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|