1{ lib, buildPythonApplication, fetchPypi 2, cbor2 3, python-dateutil 4, pyyaml 5, tomlkit 6, u-msgpack-python 7}: 8 9buildPythonApplication rec { 10 pname = "remarshal"; 11 version = "0.14.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "16425aa1575a271dd3705d812b06276eeedc3ac557e7fd28e06822ad14cd0667"; 16 }; 17 18 propagatedBuildInputs = [ 19 pyyaml cbor2 python-dateutil tomlkit u-msgpack-python 20 ]; 21 22 meta = with lib; { 23 description = "Convert between TOML, YAML and JSON"; 24 license = licenses.mit; 25 homepage = "https://github.com/dbohdan/remarshal"; 26 maintainers = with maintainers; [ offline ]; 27 }; 28}