nixpkgs/pkgs/development/tools/remarshal/default.nix
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00

23 lines
575 B
Nix

{ 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 ];
};
}