2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python3Packages }:
|
2015-11-16 11:59:30 +00:00
|
|
|
|
2018-04-21 14:30:59 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "remarshal";
|
2020-10-12 04:20:00 +00:00
|
|
|
version = "0.14.0";
|
2015-11-16 11:59:30 +00:00
|
|
|
|
2019-04-04 09:06:13 +00:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-12 04:20:00 +00:00
|
|
|
sha256 = "16425aa1575a271dd3705d812b06276eeedc3ac557e7fd28e06822ad14cd0667";
|
2015-11-16 11:59:30 +00:00
|
|
|
};
|
|
|
|
|
2018-04-21 14:30:59 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2020-10-12 04:20:00 +00:00
|
|
|
pyyaml cbor2 dateutil tomlkit u-msgpack-python
|
2016-12-30 11:03:47 +00:00
|
|
|
];
|
2015-11-16 11:59:30 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-11-16 11:59:30 +00:00
|
|
|
description = "Convert between TOML, YAML and JSON";
|
|
|
|
license = licenses.mit;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/dbohdan/remarshal";
|
2015-11-16 11:59:30 +00:00
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
};
|
|
|
|
}
|