depot/third_party/nixpkgs/pkgs/development/tools/remarshal/default.nix
Default email b96e6f4393 Project import generated by Copybara.
GitOrigin-RevId: 20887e4bbfdae3aed6bfa1f53ddf138ee325515e
2021-07-03 21:40:35 -05:00

22 lines
599 B
Nix

{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "remarshal";
version = "0.14.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "16425aa1575a271dd3705d812b06276eeedc3ac557e7fd28e06822ad14cd0667";
};
propagatedBuildInputs = with python3Packages; [
pyyaml cbor2 python-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 ];
};
}