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