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