12 buildPythonPackage rec {
17 disabled = pythonOlder "3.6";
19 src = fetchFromGitHub {
20 owner = "firefly-cpp";
22 rev = "refs/tags/${version}";
23 hash = "sha256-KD5dTr/wxFbDg3AbfE0jUbgNjvxqDmbHwjY5Dmp6JFI=";
26 nativeBuildInputs = [ poetry-core ];
28 propagatedBuildInputs = [
33 nativeCheckInputs = [ pytestCheckHook ];
35 pythonImportsCheck = [ "toml_adapt" ];
38 description = "Simple Command-line interface for manipulating toml files";
39 homepage = "https://github.com/firefly-cpp/toml-adapt";
40 changelog = "https://github.com/firefly-cpp/toml-adapt/releases/tag/${version}";
41 license = licenses.mit;
42 maintainers = with maintainers; [ firefly-cpp ];
43 mainProgram = "toml-adapt";