summary refs log tree commit diff
path: root/pkgs/development/tools/remarshal/default.nix
blob: 385db11d7ff41bec9c097bd0fea938afab778464 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "remarshal";
  version = "0.14.0";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "16425aa1575a271dd3705d812b06276eeedc3ac557e7fd28e06822ad14cd0667";
  };

  propagatedBuildInputs = with python3Packages; [
    pyyaml cbor2 dateutil tomlkit u-msgpack-python
  ];

  meta = with lib; {
    description = "Convert between TOML, YAML and JSON";
    license = licenses.mit;
    homepage = "https://github.com/dbohdan/remarshal";
    maintainers = with maintainers; [ offline ];
  };
}