blob: 9c69d83d00ba06c8482c91362c8290a7465cac69 (
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
54
55
56
57
58
59
60
61
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
libiconv,
dirty-equals,
pytest-benchmark,
pytestCheckHook,
rustPlatform,
}:
buildPythonPackage rec {
pname = "rtoml";
version = "0.10";
pyproject = true;
src = fetchFromGitHub {
owner = "samuelcolvin";
repo = "rtoml";
rev = "v${version}";
hash = "sha256-1movtKMQkQ6PEpKpSkK0Oy4AV0ee7XrS0P9m6QwZTaM=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-/elui0Rf3XwvD2jX+NGoJgf9S3XSp16qzdwkGZbKaZg=";
};
build-system = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
buildInputs = [ libiconv ];
pythonImportsCheck = [ "rtoml" ];
nativeCheckInputs = [
dirty-equals
pytest-benchmark
pytestCheckHook
];
pytestFlags = [ "--benchmark-disable" ];
disabledTests = [
# TypeError: loads() got an unexpected keyword argument 'name'
"test_load_data_toml"
];
preCheck = ''
rm -rf rtoml
'';
meta = {
description = "Rust based TOML library for Python";
homepage = "https://github.com/samuelcolvin/rtoml";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|