nixpkgs/pkgs/development/tools/remarshal/default.nix

23 lines
602 B
Nix
Raw Normal View History

{ stdenv, python3Packages }:
2015-11-16 11:59:30 +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
};
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
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;
homepage = "https://github.com/dbohdan/remarshal";
2015-11-16 11:59:30 +00:00
maintainers = with maintainers; [ offline ];
};
}