blob: a352884b2a0c9eedcd85418af726684c3a96add1 (
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,
buildPythonPackage,
fetchPypi,
# build-system
poetry-core,
# tests
pytestCheckHook,
pyyaml,
}:
buildPythonPackage rec {
pname = "tomlkit";
version = "0.13.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-QwzyR+5X3yuU7j++WI5x02KpQeu1Rd7Cm1OWHWGt0qE=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [
pyyaml
pytestCheckHook
];
pythonImportsCheck = [ "tomlkit" ];
meta = {
homepage = "https://github.com/sdispater/tomlkit";
changelog = "https://github.com/sdispater/tomlkit/blob/${version}/CHANGELOG.md";
description = "Style-preserving TOML library for Python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jakewaksbaum ];
};
}
|