about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/remarshal/default.nix
blob: 460fb46671ff185ac291bad7a04d89d32a7589e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "remarshal";
  version = "0.9.1";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "564ffe9cbde85bd28a9c184b90c764abd2003abd6101a30802262198b5c7fc40";
  };

  propagatedBuildInputs = with python3Packages; [
    dateutil pytoml pyyaml
  ];

  meta = with stdenv.lib; {
    description = "Convert between TOML, YAML and JSON";
    license = licenses.mit;
    homepage = https://github.com/dbohdan/remarshal;
    maintainers = with maintainers; [ offline ];
  };
}