9 buildPythonPackage rec {
12 format = "setuptools";
14 src = fetchFromGitHub {
17 rev = "refs/tags/v${version}";
18 hash = "sha256-FY3PYd8dY5HFKkhD6kBzPt0k1eFugdqsO3yIN4oDk3E=";
21 nativeCheckInputs = [ pytestCheckHook ];
23 pythonImportsCheck = [
28 # https://github.com/coqui-ai/coqpit/issues/40
29 disabledTests = lib.optionals (pythonAtLeast "3.11") [ "test_init_argparse_list_and_nested" ];
31 disabledTestPaths = lib.optionals (pythonAtLeast "3.11") [ "tests/test_nested_configs.py" ];
34 description = "Simple but maybe too simple config management through python data classes";
36 Simple, light-weight and no dependency config handling through python data classes with to/from JSON serialization/deserialization.
38 homepage = "https://github.com/coqui-ai/coqpit";
39 license = licenses.mit;
40 maintainers = teams.tts.members;